-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (70 loc) · 3.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="styles/app.css">
<title>Document</title>
</head>
<body>
<div class='container'>
<nav class='js-nav'>
<div class="nav-wrapper amber darken-2">
<a href="#" class="brand-logo center disabled"><strong>//codeBreak</strong></a>
<ul id="nav-mobile" class="left hide-on-med-and-down js-nav-buttons">
<li><a href="#" class='js-home'>Home</a></li>
<li><a href="#" class='js-series'>Series</a></li>
<!-- <li><a href="collapsible.html">JavaScript</a></li> -->
</ul>
<ul id="nav-mobile" class="right hide-on-med-and-down js-nav-buttons">
<li><a href="#" class='js-aboutus'>About Us</a></li>
</ul>
</div>
</nav>
<div class='row js-main'>
<div class='col s12 m4 js-schedule'>
<ul class="collection with-header">
<li class="collection-header">
<h4>Schedule</h4>
</li>
<li class="collection-item">Alvin</li>
</ul>
</div>
<div class='col s12 m8 js-episodes row'>
<div class="col s12 m7">
<h2 class="header">Pilot</h2>
<div class="card horizontal">
<div class="card-image">
<img src="assets/images/victoria_buchanan.png" style='height: auto; width: 200px;'>
<span class="card-title black-text flow-text" style='font-size: 20px;'>Victoria Buchanan</span>
</div>
<div class="card-stacked">
<div class="card-content">
<p>I am a very simple card. I am good at containing small bits of information.</p>
</div>
<div class="card-action">
<a href="#">This is a link</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class='row'>
<span class='grey-text text-darken-4'> <strong>Disclaimer:</strong> <em>The views and opinions expressed by //codeBreak are
those of theauthors and do not reflect the official policy or position of Pursuit and/or anyof
their affiliates. Any content provided by our bloggers or authors are oftheir opinion, and are not
intended to malign any religion, ethnic group,club, organization, company, individual or anyone or
anything</em>
</span>
</div>
</div>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src='js/app.js'> </script>
</body>
</html>