-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
81 lines (63 loc) · 2.19 KB
/
portfolio.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Student Bio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style2.css">
</head>
<body class="body">
<header class="header">
<div class="header-center">
<span class="header-name">Nathan Novak</span>
<span class="header-links">
<a href="index.html">About</a> |
<a href="portfolio.html">Portfolio</a> |
<a href="contact.html">Contact</a>
</span>
</div>
</header>
<div class="content">
<span class="content-title">Portfolio</span>
<hr>
<br>
<section class="gallery">
<div class="box">
<a target="blank" href="assets/images/placeimg_350_350_arch (1).jpg">
<img src="assets/images/placeimg_350_350_arch (1).jpg" class="gallery-image">
</a>
<h3 class="text">Building</h3>
</div>
<div class="box">
<a target="blank" href="assets/images/placeimg_350_350_arch.jpg">
<img src="assets/images/placeimg_350_350_arch.jpg" class="gallery-image">
</a>
<h3 class="text">Arch</h3>
</div>
<div class="box">
<a target="blank" href="assets/images/placeimg_350_350_nature (1).jpg">
<img src="assets/images/placeimg_350_350_nature (1).jpg" class="gallery-image">
</a>
<h3 class="text">Roling Fields</h3>
</div>
<div class="box">
<a target="blank" href="assets/images/placeimg_350_350_nature (2).jpg">
<img src="assets/images/placeimg_350_350_nature (2).jpg" class="gallery-image">
</a>
<h3 class="text">Pathway</h3>
</div>
<div class="box">
<a target="blank" href="assets//images/placeimg_350_350_nature.jpg">
<img src="assets/images/placeimg_350_350_nature.jpg" class="gallery-image">
</a>
<h3 class="text">Turquoise</h3>
</div>
</section>
</div>
<div class="footer">
<span>Copyright</span> ©
</div>
</body>
</html>