-
Notifications
You must be signed in to change notification settings - Fork 0
/
griffinTemplate2Projects.html
105 lines (83 loc) · 2.77 KB
/
griffinTemplate2Projects.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects</title>
<!-- custom css file link -->
<link rel="stylesheet" href="css/griffinTemplate2.css">
</head>
<body>
<!-- navbar section starts -->
<nav class="navbar">
<a href="griffinTemplate2Home.html"> <span>home</span> </a>
<a href="griffinTemplate2About.html"> <span>about</span> </a>
<a href="griffinTemplate2Projects.html"> <span>portfolio</span> </a>
<a href="mailto:"> <span>contact</span> </a>
</nav>
<!-- navbar section ends -->
<!-- portfolio section starts -->
<section class="portfolio">
<h1 class="heading"> <span>my</span> work </h1>
<div class="box-container">
<div class="box">
<img src="images\project.png" alt="">
<div class="content">
<h3>project 01</h3>
<p>write Information about your projects here</p>
</div>
</div>
<div class="box">
<img src="images\project.png" alt="">
<div class="content">
<h3>project 02</h3>
<p>write Information about your projects here</p>
</div>
</div>
<div class="box">
<img src="images\project.png" alt="">
<div class="content">
<h3>project 03</h3>
<p>write Information about your projects here</p>
</div>
</div>
<div class="box">
<img src="images\project.png" alt="">
<div class="content">
<h3>project 04</h3>
<p>write Information about your projects here</p>
</div>
</div>
<div class="box">
<img src="images\project.png" alt="">
<div class="content">
<h3>project 05</h3>
<p>write Information about your projects here</p>
</div>
</div>
<div class="box">
<img src="images\project.png" alt="">
<div class="content">
<h3>project 06</h3>
<p>write Information about your projects here</p>
</div>
</div>
<div class="box">
<img src="images\project.png" alt="">
<div class="content">
<h3>project 07</h3>
<p>write Information about your projects here</p>
</div>
</div>
<div class="box">
<img src="images\project.png" alt="">
<div class="content">
<h3>project 08</h3>
<p>write Information about your projects here</p>
</div>
</div>
</div>
</section>
<!-- portfolio section ends -->
</body>
</html>