-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (63 loc) · 1.74 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
78
<!doctype html>
<html >
<head>
<title>Garrett R. Miller | Develop for ____</title>
<!--META DATA-->
<!--CSS-->
<link href="css/reset.css" type="text/css" rel="stylesheet"></link>
<link href="css/styles.css" type="text/css" rel="stylesheet"></link>
</head>
<body ng-app="mainMod">
<nav>
<img src="images/hamburgerIcon.png" />
<ul>
<li><a href="#/">Home</a></li>
<li><a href="#about.html">About</a></li>
<li><a href="#/portfolio">Work</a></li>
<li><a href="#contact_form">Contact</a></li>
</ul>
</nav>
<ng-view></ng-view>
<footer>
<section>
<h1>More About Me</h1>
<ul>
<li>Hobbies</li>
<li>Favorite Movies</li>
<li>Current Music</li>
<li>Recent Books</li>
<li>Where I've Been</li>
<li>Random Facts</li>
</ul>
</section>
<section>
</section>
<section>
<h1>Reach Out! I'll be there.</h1>
<form>
<ul>
<li>
<label for="email">E-mail</label>
<div id="email_input">
<input id="email" type="text" />
</div>
</li>
<li>
<label for="message">Your Message</label>
<div id="contact_msg">
<textarea id="message" type="textarea"></textarea>
</div>
</li>
</ul>
<input type="submit" value="Send Message" />
</form>
</section>
</footer>
<!--SCRIPTS-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="lib/angular.min.js"></script>
<script src="lib/angular-route.min.js"></script>
<script src="js/app.js"></script>
<script src="js/projectsCtrl.js"></script>
</body>
</html>