-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.6 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 1.6 KB
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
<!doctype html>
<html lang="en" ng-app="app">
<head>
<meta encoding="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mike Xu</title>
<link rel="stylesheet" href="vendor/css/normalize.css">
<link rel="stylesheet" href="vendor/css/bootstrap.min.css">
<link rel="stylesheet" href="app/css/app.css">
</head>
<body ng-controller="MainCtrl">
<div class="mainNav">
<div class="navTitle">
<a href="#/home">
mike xu
</a>
</div>
<hr>
<ul>
<li><a href="#/about">ABOUT</a></li>
<li><a href="#/work">WORK</a></li>
<li><a href="#/qualifications">QUALIFICATIONS</a></li>
<li><a href="#/download">DOWNLOADS</a></li>
<li><a href="https://docs.google.com/a/case.edu/forms/d/1IIOUfrXWkOZuoQRg0RCU0QE-2tf3dFEwIuaWhJ1VXhs/viewform">USABILITY SURVEY</a></li>
</ul>
<hr>
<br>
<br>
<div class="text contact">
<address>
2397 Euclid Heights Blvd<br>
Apt. 4C<br>
Cleveland, OH 44106<br>
phone: (978)-397-0693<br>
email: <a href="mailto:mxx17@case.edu">mxx17@case.edu</a>
</address>
</div>
</div>
<div class="container-fluid mainContainer">
<div id="view" ng-view class="reveal-animation"></div>
</div>
<script src="vendor/js/jquery.js"></script>
<script src="vendor/js/bootstrap.min.js"></script>
<script src="vendor/js/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.3/angular-animate.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular-route.min.js"></script>
<script src="vendor/js/oridomi.min.js"></script>
<script src="app/js/app.js"></script>
</body>
</html>