-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
99 lines (86 loc) · 2.98 KB
/
about.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">
<link rel="icon" type="image/ico" href="./images/developer.png">
<title>About</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 href="portfolio.html"><i class="fas fa-briefcase"></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-->
<!---About Section Starts-->
<section class="about">
<h1 class="heading">about <span>me</span></h1>
<div class="row">
<div class="count-container">
<div class="box">
<h3>5+</h3>
<p>month of experience</p>
<h5 id="date2">(as of May 22nd, 2022)</h5>
<a href="about.html" class="btn">Read More</a>
</div>
<div class="box">
<h3>15+</h3>
<p>projects completed</p>
<h5 id="date3">(as of May 22nd, 2022)</h5>
<a href="portfolio.html" class="btn">Read More</a>
</div>
<div class="box">
<h3>7+</h3>
<p>international certificates earned</p>
<a href="awards.html" class="btn">Read More</a>
</div>
<div class="box">
<h3>6+</h3>
<p>techs and programming languages learned</p>
<a href="#skills" class="btn">Read More</a>
</div>
</div>
</div>
</section>
<!---About Section Ends-->
<!---Skills Section Starts-->
<section class="skills" id="skills">
<h1 class="heading"><span>my</span> skills </h1>
<div class="box-container">
<div class="box">
<img src="images/icon-1.png" alt="">
<h3>html</h3>
</div>
<div class="box">
<img src="images/icon-2.png" alt="">
<h3>css</h3>
</div>
<div class="box">
<img src="images/icon-5.png" alt="">
<h3>bootstrap</h3>
</div>
<div class="box">
<img src="images/icon-3.png" alt="">
<h3>sass</h3>
</div>
<div class="box">
<img src="images/icon-6.png" alt="">
<h3>JavaScrirt</h3>
</div>
<div class="box">
<img src="images/icon-4.png" alt="">
<h3>python</h3>
</div>
</div>
</section>
<!---Skills Section Ends-->
<script src="script.js"></script>
</body>
</html>