-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (59 loc) · 2.89 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
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
<!-- We start with an HTML document declaration, telling the browser this is an HTML file for English language. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tanvir's Portfolio</title>
<!-- We import the Boxicons CSS library to use icons in our project. -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<!-- We link our custom CSS file "style.css" to style the webpage. -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- The header section contains the logo, menu icon, and navigation links. -->
<header class="header">
<!-- The "Portfolio" link that serves as our logo. -->
<a href="#" class="logo">Portfolio</a>
<!-- The menu icon, represented by the "bx bx-menu" class from Boxicons library. -->
<i class='bx bx-menu' id="menu-icon"></i>
<!-- The navigation bar (navbar) containing various links to different sections. -->
<nav class="navbar">
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</nav>
</header>
<!-- The homepage design section with class "home" and ID "home". -->
<section class="home" id="home">
<!-- The home content with a greeting and introduction. -->
<div class="home-content">
<h3>Hello, It's Tanvir Sublok</h3>
<h1>I'm an aspiring <span>Software Developer</span></h1>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quibusdam facere
esse, doloribus, tempore, odio dolores eos adipisci nam exercitationem ea modi nemo.
Accusantium veritatis quos qui dignissimos ex sunt quisquam.</p>
<!-- Social media icons for linking to profiles. -->
<div class="social-media">
<a href="#"><i class='bx bxl-facebook-circle'></i></a>
<a href="#"><i class='bx bxl-twitter'></i></a>
<a href="#"><i class='bx bxl-instagram'></i></a>
<a href="#"><i class='bx bxl-linkedin-square'></i></a>
<a href="#"><i class='bx bxl-github'></i></a>
<a href="#"><i class='bx bxl-gmail'></i></a>
</div>
<!-- A button to view the resume. -->
<a href="#" class="btn">View Resume</a>
</div>
<!-- An image of myself with class "home-img". -->
<div class="home-img">
<img src="images/myself1.jpeg" alt="">
</div>
</section>
<!-- We link our custom JavaScript file "script.js" for interactivity. -->
<script src="js/script.js"></script>
</body>
</html>