-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (70 loc) · 3.69 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
79
80
81
82
83
<!DOCTYPE html>
<html lang="en-US">
<!-- code between head tags from Bootstrap website -->
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Jeremy Yu</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- my own CSS file -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- navigation bar -->
<navbar class="navbar fixed-top navbar-light navbar-expand-sm bg-white">
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
<li class="nav-item">
<a class="nav-link" href="about.html">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="stories.html">Stories</a>
</li>
</ul>
</div>
</navbar>
<!-- profile picture and home page header -->
<div class="text-center container title pic-container pro-pic-fade">
<img id="profile" class="img-fluid pro-pic" src="assets/fall-con-jeremy.jpg" alt="Responsive img">
</div>
<div class="text-center container">
<h1 style="font-size: 43px;"><strong>Hi. I'm Jeremy.</strong></h1>
</div>
<!-- contains James 1:2-4 -->
<div class="container sm-container text-center">
Click on me to see a picture of a goat.
</div>
<div class="text-center text-muted">
_________________________________________
</div>
<!-- links to stuff -->
<br>
<div class="text-center">
<span><a href="https://github.com/yu-jeremy/Personal-Website"><img class="info_link" width="3%" src="myicons/png/002-social-media.png"></a></span>
<span style="margin: 30px"><a href="https://www.facebook.com/jeremy.yu.750"><img class="info_link" width="3%" src="myicons/png/003-facebook-logo.png"></a></span>
<span><a href="mailto:jeremy.yu@wustl.edu"><img class="info_link" width="3%" src="myicons/png/001-web.png"></a></span>
</div>
<footer class="footer bg-light">
<div class="footer_text">
<span class="text-muted row justify-content-between">
<i><small class="col">Designed and coded by Jeremy Yu using <a href="https://getbootstrap.com/">Bootstrap</a>
</small></i>
<i><small class="col" style="margin-right: 20px">Icons by <a href="https://www.flaticon.com/authors/yannick">Yannick</a>, <a href="https://www.flaticon.com/authors/icomoon">Icomoon</a>, and <a href="https://www.flaticon.com/authors/simpleicon">SimpleIcon</a> from <a href="www.flaticon.com">www.flaticon.com</a></small></i>
</span>
</div>
</footer>
<!-- Javascript files -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="scripts/script.js"></script>
</body>
</html>