-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.html
46 lines (38 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link rel="stylesheet" href="styles/main.css" media="screen" title="no title">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="styles/normalize.css">
<link type="text/css" rel="stylesheet" href="styles/main.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<!--Two Column Layout-->
<body>
<div id="container">
<!-- Page Content goes here -->
<section id="masthead">
<article>
<div class="col s12">TWO COLUMN LAYOUT-This div is 12-columns wide</div></div>
</article>
</section>
<section id="page_layout">
<div class="row">
<div class="cols9">9 columns wide</div>
<div class="cols3">3 columns wide</div>
</div
</section>
<section id="footer">
<article>
<div class="col s12">This div is 12-columns wide</div></div>
</article>
</section>
<!--End of Two Column Layout-->
</body>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="scripts/materialize.min.js"></script>
</html>