-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (85 loc) · 2.86 KB
/
Copy pathindex.html
File metadata and controls
85 lines (85 loc) · 2.86 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Portfolio || Project 5</title>
<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=Caveat:wght@400..700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
/>
</head>
<body>
<!-- Container Start -->
<div class="container">
<!-- Navigation start -->
<div class="menu-icon">
<div class="line line-1"></div>
<div class="line line-2"></div>
</div>
<nav class="navigation">
<div class="section-border"></div>
<div class="nav-items">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Project</a>
<a href="#">Gallery</a>
<a href="#">Blog</a>
<a href="#">Clients</a>
<a href="#">Pricing</a>
<a href="#">Contact</a>
</div>
</nav>
<!-- Navigation end -->
<!-- Landing Start -->
<section class="Landing">
<h1 class="section-bg-heading">Web Developer</h1>
<div class="logo">
<span>Web</span>
<span>Dev</span>
</div>
<div class="banner">
<div class="section-border"></div>
<div class="section-info">
<h3 class="greeting">Hello, <span>My Name is</span></h3>
<h1 class="name"><span>Shabbir</span>Hossan</h1>
<h1 class="prof">I am <span>Web Developer</span></h1>
<p class="about">
"Shabbir Hossan" Lorem, ipsum dolor sit amet consectetur
adipisicing elit. Fuga rerum voluptates eius odit distinctio,
sapiente quibusdam quis magnam nam fugit.
</p>
<div class="social-media">
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
</div>
<div class="cv">
<button class="btn cv-btn">Download Cv</button>
<span>My Skills</span>
</div>
</div>
<div class="developer-img">
<div class="dev-img-wrapper">
<img src="./image/1.png" alt="Developer Image" />
</div>
<div class="dev-experience dev-work">
<span>400+</span>
<span>Completed Project</span>
</div>
</div>
</div>
</section>
<!-- Landing End -->
</div>
<!-- Container End -->
<script src="script.js"></script>
</body>
</html>