-
Notifications
You must be signed in to change notification settings - Fork 0
/
Portfolio_Web.html
42 lines (41 loc) Β· 1.63 KB
/
Portfolio_Web.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Website - Programmergoutam</title>
<link rel="stylesheet" href="Portfolio_Website.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<nav class="navbar">
<div class="logo">
<h1>Programmergoutam</h1>
</div>
<div class="menu">
<a class="home" href="/">HOME</a>
<a href="#">ABOUT</a>
<a href="#">SKILLS</a>
<a href="#">CONTACT</a>
</div>
</nav>
<section class="hero-box">
<div class="txt-left">
<h3>Hello, It's Me</h3>
<h1>Shani Soni</h1>
<h3 class="developer-txt">And I'm a <span style="color: cyan;">Frontend Developer</span></h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus aliquam nobis quidem?</p>
<div class="social-media">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-github"></i>
<i class="fa-brands fa-linkedin"></i>
</div>
<button>Download CV</button>
</div>
<div class="img-right">
<img width="300px" height="300px" src="pic.jpg" alt="">
</div>
</section>
</body>
</html>