-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.html
More file actions
47 lines (43 loc) · 1.36 KB
/
About.html
File metadata and controls
47 lines (43 loc) · 1.36 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
<!DOCTYPE html>
<html dir="ltr" lang="en-us">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="STYLE.css" />
<link
href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css"
rel="stylesheet"
/>
<title>Deepa - Portfolio</title>
</head>
<body>
<header class="header">
<a href="#" class="logo">Deepa</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="About.html" class="active">About</a>
<a href="skills.html">Skills</a>
<a href="experience.html">Experience</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section class="gap-box">
<div class="box-1">
<h3>2017-2021   -   8.05 CGPA</h3>
<h2>Bachelor Degree - Chemical Engineering</h2>
<h3>Rajalakshmi Engineering College</h3>
</div>
<div class="box-2">
<h3>2015-2017   -   88.33%</h3>
<h2>HSC</h2>
<h3>Government Higher secondary School</h3>
</div>
<div class="box-3">
<h3>2015   -   97.4%</h3>
<h2>SSLC</h2>
<h3>Government High School</h3>
</div>
</section>
</body>
</html>