-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
99 lines (97 loc) · 4.1 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!---Navbar Section Starts-->
<nav class="navbar">
<a href="index.html"><i class="fas fa-home"></i><span>home</span></a>
<a href="about.html"><i class="fas fa-user"></i><span>about</span></a>
<a class="activ" href="portfolio.html"><i class="fas fa-briefcase activ"></i><span>portfolio</span></a>
<a href="awards.html"><i class="fas fa-award"></i><span>awards</span></a>
<a href="contact.html"><i class="fas fa-address-book"></i><span>contact</span></a>
</nav>
<!---Navbar Section Ends-->
<!---Portfolio Section Starts-->
<section class="portfolio">
<h1 class="heading"><span>my</span> projects </h1>
<div class="box-container">
<div class="box">
<img src="images/img-1.PNG" alt="">
<div class="content">
<h3>project 01</h3>
<p>I have created this website using my skills. Truth to be told that it was not order.
I just created this to enhance my skill </p>
<a href="#">read more</a>
</div>
</div>
<div class="box">
<img src="images/img-2.PNG" alt="">
<div class="content">
<h3>project 02</h3>
<p>I have created this website using my skills. Truth to be told that it was not order.
I just created this to enhance my skill </p>
<a href="#">read more</a>
</div>
</div><div class="box">
<img src="images/img-3.PNG" alt="">
<div class="content">
<h3>project 03</h3>
<p>I have created this website using my skills. Truth to be told that it was not order.
I just created this to enhance my skill </p>
<a href="#">read more</a>
</div>
</div><div class="box">
<img src="images/img-4.PNG" alt="">
<div class="content">
<h3>project 04</h3>
<p>I have created this website using my skills. Truth to be told that it was not order.
I just created this to enhance my skill </p>
<a href="#">read more</a>
</div>
</div><div class="box">
<img src="images/img-5.PNG" alt="">
<div class="content">
<h3>project 05</h3>
<p>I have created this website using my skills. Truth to be told that it was not order.
I just created this to enhance my skill </p>
<a href="#">read more</a>
</div>
</div><div class="box">
<img src="images/img-6.PNG" alt="">
<div class="content">
<h3>project 06</h3>
<p>I have created this website using my skills. Truth to be told that it was not order.
I just created this to enhance my skill </p>
<a href="#">read more</a>
</div>
</div>
<div class="box">
<img src="images/img-7.PNG" alt="">
<div class="content">
<h3>project 07</h3>
<p>I have created this website using my skills. Truth to be told that it was not order.
I just created this to enhance my skill </p>
<a href="#">read more</a>
</div>
</div>
<div class="box">
<img src="images/img-8.PNG" alt="">
<div class="content">
<h3>project 08</h3>
<p>I have created this website using my skills. Truth to be told that it was not order.
I just created this to enhance my skill </p>
<a href="#">read more</a>
</div>
</div>
</div>
</section>
<!---Portfolio Section Ends-->
</body>
</html>