-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (39 loc) · 1.5 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Porfolio Website</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header class="header">
<a href="#" class="logo">Portfolio</a>
<nav class="navbar">
<a href="#" class="active">Home</a>
<a href="#">About</a>
<a href="#">Education</a>
<a href="#">My Work</a>
<a href="#">Contact</a>
</nav>
</header>
<section class="home">
<div class="home-image">
<img src="img.jpg" alt="">
</div>
<div class="home-content">
<h1>Hi, I'm Siddhi Naik</h1>
<h3>Second Year Student</h3>
<p>I'm currently studying in Thakur College of Engineering and Tehnology in branch Artificial Intelligence and Data Science. </p>
<div class="home-sci">
<a href="#"><i class='bx bxl-facebook'></i></a>
<a href="#"><i class='bx bxl-twitter'></i></a>
<a href="#"><i class='bx bxl-instagram-alt'></i></a>
<a href="#"`><i class='bx bxl-linkedin' ></i></a>
</div>
<a href="#" class="btn">Download CV</a>
</div>
</section>
</body>
</html>