-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
61 lines (53 loc) · 1.76 KB
/
portfolio.html
File metadata and controls
61 lines (53 loc) · 1.76 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Nick Clear | Portfolio</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<h1 class="h-teal">Nick Clear</h1>
<br>
<nav>
<a href="index.html">Home</a>
<span>|</span>
<a href="portfolio.html">Portfolio</a>
<span>|</span>
<a href="contact.html">Contact</a>
</nav>
</header>
<div class="container">
<h2>Portfolio</h2>
<hr>
<div class="portfo">
<div class="sample-work">
<h3 class="h-teal">Computer</h3>
<img src="assets/images/computer_open.jpeg" alt="computer screen">
</div>
<div class="sample-work">
<h3 class="h-teal">Coffee</h3>
<img src="assets/images/coffee_pourover.jpeg" alt="coffee pourover">
</div>
<div class="sample-work">
<h3 class="h-teal">Piano</h3>
<img src="assets/images/piano_hands.jpeg" alt="playing piano">
</div>
<div class="sample-work">
<h3 class="h-teal">Ocean</h3>
<img src="assets/images/wave_dark.jpeg" alt="dark ocean wave">
</div>
<div class="sample-work">
<h3 class="h-teal">Road</h3>
<img src="assets/images/road_tunnel.jpeg" alt="road entering tunnel">
</div>
</div>
</div>
<footer>
<div class="div-foot"></div>
<p>Copyright ©</p>
</footer>
</body>
</html>