forked from info343c-a16/m8-responsive-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (31 loc) · 1.31 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
<!doctype html>
<html>
<head>
<!-- Declare the character set of your files -->
<meta charset="utf-8">
<!-- Give your page a title "Exercise ###" -->
<title>Exercise 3</title>
<!-- Set the author of the page to your name -->
<meta author="Michael Freeman">
<!-- Set device width to ensure proper renering on mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Load materialze framework -->
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css">
<!-- Load jQuery library, a dependency for Materialize -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/js/materialize.min.js"></script>
<!-- Font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css" />
<!-- Read in css file -->
<link href="css/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<main>
<section>
<!-- Create elements in here -->
</section>
</main>
</body>
</html>