-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (65 loc) · 2 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Andrew Yuan</title>
<link href="css/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<img src="img/logo.png" alt="Andrew Yuan" class="logo">
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a target="_blank" href="/resume.pdf">Résumé</a></li>
<li><a href="/projects">Projects</a></li>
<li><a href="/memes">Memes</a></li>
</ul>
</nav>
</header>
<section class="home-hero parallax--bg">
<div class="container">
<h1 class="title">Hi, I am Andrew Yuan
<span>Welcome to my website.</span>
</h1>
<a href="" class="button button-accent">See My Work</a>
</div>
</section>
<div class="container">
<section class="home-about">
<div class="home-about-textbox">
<h1>Who I am</h1>
<p><strong>Andrew Yuan</strong> is a University of Michigan student studying Computer Science.</p>
</div>
</section>
</div>
<section class="cta">
<div class="container">
<h1 class="title title-cta">Like what you see?
<span>Want to work on a project together?</span>
</h1>
<a href="mailto:[email protected]" class="button button-dark">Contact Me</a>
</div>
</section>
<footer>
<div class="container">
<div class="col-1">
<ul class="unstyled-list">
<li><a href="mailto:[email protected]">Contact Me</a></li>
</ul>
</div>
<div class="col-1">
<ul class="unstyled-list">
<li><a href="https://github.com/yuandrew">Github</a></li>
</ul>
</div>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script src="js/parallax.js"></script>
</body>
</html>