-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.54 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
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-122937424-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-122937424-1');
</script>
<title>Andrew Natarian</title>
<link rel="icon" href="images/AN_favicon.png">
<link rel="stylesheet" href="main.css"></link>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<script src="app/app.js"></script>
</head>
<body>
<div id="topHalf">
<navbar></navbar>
</div>
<div id="bottomHalf">
<div id="title">
<h1 id="name">Andrew Natarian</h1>
<p id="school"><b>University of Maryland, College Park</b></p>
<p id="major"><i>Bachelor of Science</i> in <b>Computer Science</b></p>
<p id="major"><i>Bachelor of Science</i> in <b>Applied Mathematics</b></p>
<p id="graduation_date">Graduation Date: May, 2019</p>
<p>Email: <a id="email" href="mailto:[email protected]">[email protected]</a></p>
</div>
<div id="schoolImages">
<a href="http://www.cs.umd.edu/" target="_blank"><img id = "CSLogo" src="images/UMD_CS_logo.png" title="Click to view UMD CS website" alt = "CS"></a>
<a href="https://www-math.umd.edu/" target="_blank"><img id = "MathLogo" src="images/UMD_Mathematics.png" title="Click to view UMD Math website" alt = "MATH"></a>
</div>
</div>
</body>
</html>