-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
45 lines (43 loc) · 2.21 KB
/
index3.html
File metadata and controls
45 lines (43 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Science+Gothic:wght@100..900&display=swap" rel="stylesheet">
<title>Portfolio Website</title>
</head>
<body>
<header>
<a href="#" class="logo">Portfolio</a>
<nav>
<div class="hover-underline"><a href="#" class="active"> Home</a></div>
<div class="hover-underline"><a href="service.html" >Services</a></div>
<div class="hover-underline"><a href="#" >Skills</a></div>
<div class="hover-underline"><a href="#" >Education</a></div>
<div class="hover-underline"><a href="#" >Experience</a></div>
<div class="hover-underline"><a href="#" >Contact</a></div>
</nav>
</header>
<section class="home">
<div class="home-img">
<img src="bhoomi.jpg" alt="image">
</div>
<div class="home-content">
<h1>Hi, It's <span>Bhoomika</span></h1>
<h3 class="typing-text">I'm a <span></span></h3>
<p>Dreaming big, coding bigger and occasionally forgetting semicolons.</p>
<div class="social-icons">
<a href="https://www.linkedin.com/in/bhoomika-srikanth-68b300311?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://github.com/bhoomiiee"><i class="fa-brands fa-github"></i></a>
<a href="#"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://www.instagram.com/bhoo.meee_?igsh=d3BlaXc1cWptNTRx"><i class="fa-brands fa-instagram"></i></a>
</div>
<a href="https://wa.me/919380395131?text=Hi%20I%20saw%20your%20portfolio%20and%20want%20to%20connect" class="btn">Connect</a>
</div>
</section>
</body>
</html>