-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
40 lines (32 loc) · 1.03 KB
/
portfolio.html
File metadata and controls
40 lines (32 loc) · 1.03 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Finley Protfolio</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:300,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="portfolio.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="sidebar">
<div class="logo">David Finley<span>Portfolio</span></div>
<nav>
<a href="" class="nav-item">Home</a>
<a href="" class="nav-item">About</a>
<a href="" class="nav-item active">Portfolio</a>
<a href="" class="nav-item">Contact</a>
</nav>
</div>
<div class="main-content">
<div class="portfolio">
<div class="portfolio-item medium">one</div>
<div class="portfolio-item large two">two</div>
<div class="portfolio-item medium">three</div>
<div class="portfolio-item small">four</div>
<div class="portfolio-item tall">five</div>
<div class="portfolio-item wide">six</div>
</div>
</div>
</body>