-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (31 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<!--Reference to bootstrap css style sheet. Goes above the custom css created
to that it has the ability to override the stuff in here-->
<link rel="stylesheet" href="css/bootstrap-grid.css" type="text/css">
<!--Reference to the css syle sheet-->
<link rel="stylesheet" href="css/styles.css" type="text/css">
<!--References to the fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed&family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<ul>
<li>home</li>
<li>projects</li>
<li>expirence</li>
<li>git</li>
<li>linkedin</li>
</ul>
</nav>
<header>
<img src="img/compHeader.png" class="header_image"alt="Emily Boice With old computer"/>
<img src="img/downArrow.png" class="down_arrow_image"alt="down arrow"/>
</header>
</body>
</html>