-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
176 lines (119 loc) · 4.85 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Durjay Dhali</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/8949a76786.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- header section starts -->
<header>
<div class="user">
<img src="images/pic.jpeg" alt="">
<h3 class="name">Durjay Dhali</h3>
<p class="post">Student at University of Dhaka</p>
</div>
<nav class="navbar">
<ul>
<li><a href="#home">home</a></li>
<li><a href="#about">about</a></li>
<li><a href="#education">education</a></li>
<li><a href="#portfolio">portfolio</a></li>
<li><a href="#contact">contact</a></li>
</ul>
</nav>
</header>
<!-- header section ends -->
<div id="menu" class="fas fa-bars"></div>
<!-- home section starts -->
<section class="home" id="home">
<h3>HI THERE !</h3>
<h1>I'M <span>Durjay Dhali</span></h1>
<a href="#about"><button class="btn">About me </button></a>
<a href="https://github.com/Durjay-Dhali"><button class="btn">Github <i class="fa-brands fa-github"></i></button></a>
<a href="https://twitter.com/durjay_dhali"><button class="btn">Twitter <i class="fa-brands fa-twitter"></i></button></a>
</section>
<!-- home section ends -->
<!-- about section starts -->
<section class="about" id="about">
<h1 class="heading"> <span>about</span> me </h1>
<div class="row">
<p>I am Durjay Dhali, Currently studying at University of Dhaka in Physics major. I like working with computers & electronics. I love teaching others & helping them to solve their problems. I love working in team. I am a good listener but I don't speak much.
</p>
<div class="info">
<h3> <span> name : </span> Durjay Dhali </h3>
<h3> <span> age : </span> 22 </h3>
<h3> <span> post : </span> Student </h3>
<h3> <span> language : </span> Bengali </h3>
<a href="https://tinyurl.com/dhaliscv"><button class="btn"> download CV <i class="fas fa-download"></i> </button></a>
</div>
</div>
</section>
<!-- about section ends -->
<!-- education section starts -->
<section class="education" id="education">
<h1 class="heading"> my <span>education</span> </h1>
<div class="box-container">
<div class="box">
<i class="fas fa-graduation-cap"></i>
<span>2018</span>
<h3>Student at Govt. BL College, Khulna</h3>
<p>Some of the best times of my life I spent here. I miss those days!</p>
</div>
<div class="box">
<i class="fas fa-graduation-cap"></i>
<span>2020</span>
<h3>Higher Secondary Third year</h3>
<p>All cradit goes to covid-19. I also got auto pass this year!</p>
</div>
<div class="box">
<i class="fas fa-graduation-cap"></i>
<span>2022</span>
<h3>Student at University of Dhaka</h3>
<p>Got admitted here after attending a highly competitive exam.</p>
</div>
</div>
</section>
<!-- education section ends -->
<!-- portfolio section starts -->
<section class="portfolio" id="portfolio">
<h1 class="heading"> my <span>portfolio</span> </h1>
<br>
<h3>I Haven't done anything in my life!</h3>
<h2>But I am working on it!</h2>
</section>
<!-- portfolio section ends -->
<!-- contact section starts -->
<section class="contact" id="contact">
<h1 class="heading"> <span>contact</span> me </h1>
<div class="row">
<div class="content">
<h3 class="title">contact info</h3>
<div class="info">
<h3> <i class="fas fa-envelope"></i> durjaydhali366@gmail.com </h3>
<h3> <i class="fas fa-map-marker-alt"></i> Dhaka, Bangladesh. </h3>
</div>
</div>
<form action="" name="contact" method="POST" data-netlify="true">
<input type="text" placeholder="name" class="box">
<input type="email" placeholder="email" class="box">
<textarea name="" id="" cols="30" rows="10" class="box message" placeholder="message"></textarea>
<button type="submit" class="btn"> send <i class="fas fa-paper-plane"></i> </button>
</form>
</div>
</section>
<!-- contact section ends -->
<!-- scroll top button -->
<a href="#home" class="top">
<img height="30px" width="30px" src="images/upload.png" alt="">
</a>
<!-- jquery cdn link -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>