-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
312 lines (281 loc) · 8.45 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHAUN SPEAKS</title>
<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=Poppins:wght@600&display=swap" rel="stylesheet">
<style>
body
{
scroll-behavior: smooth;
margin:0;
padding:0;
box-sizing:border-box;
font-family: 'Poppins', sans-serif ;
background-color: rgba(13, 12, 12, 0.981);
color:white;
height:100vh ;
width:100%;
background-image: url('bubuonly.jpg');
background-size: contain;
background-position: center;
}
.left
{
display: inline-block;
/* border : 3px solid red ; */
position:absolute;
left: 8px;
top: 12px ;
}
img
{
padding-left: 19px;
width : 123px ;
height:103px;
}
.middle
{
display: block;
/* border : 3px solid red ; */
width: 50% ;
margin:0px auto ;
text-decoration:double;
margin-right: 12px;
}
li {
/* display: inline ; */
color: white;
}
li a {
border :3px solid red ;
display: flex ;
flex-direction:column;
justify-content: stretch;
color: white;
text-decoration: none;
padding: 34px 23px;
font-size: x-large
/* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
}
li a:hover {
text-decoration: underline;
color:green;
}
#id
{
/* border: 3px solid red ; */
margin:-20px;
padding: 3px 4px ;
}
#intro
{
width:100%;
text-align:center;
margin: 25% auto ;
}
#intro span
{
color:red;
}
.about
{
display:block;
width:100% ;
}
.about h1{
text-align: center;
margin-top: 15%;
}
.about p
{
text-align:center;
border : 9px solid red ;
font-size: large;
}
.container
{
height: :1600px;
border: 6px solid red ;
display:flex ;
flex-direction: row ;
flex-wrap: wrap;
justify-content: center;
align-items: stretch ;
}
.item
{
width: 200px ;
height:200px ;
background-color: tomato;
border: 2px solid green ;
margin: 10px ;
padding: 3px ;
}
.item h3
{
margin:0px;
}
.links
{
border:3px solid red;
display: flex;
flex-direction: row;
justify-content:center;
}
#btn
{
border:3px solid black;
background-color: red;
color:white;
padding:16px 15px;
border-radius: 8px;
cursor: pointer;
}
.links a
{
color: red;
}
.formss
{
border:8px solid red;
padding-left: 40%;
}
.footer {
width:100% ;
text-align: center;
padding: 3px;
margin-left:0px;
background-color: rgb(225, 220, 60);
color: black ;
}
.links a
{
color:white;
margin: 20px;
}
#button1 {
font-family: 'Poppins', sans-serif ;
color:white;
background-color: red;
border: 3px solid white;
border-radius:8px;
width:100px;
height:30px;
}
.formtext textarea{
padding-left:auto;
}
</style>
<script>
function hide()
{
let btn = document.getElementById('btn');
let para = document.getElementById('para');
if(para .style .display!='none')
para .style .display = 'none';
else
para .style .display = 'block';
}
</script>
</head>
<div class="loader"></div>
<header>
<div id="header">
<div >
<img src="shuan.png" alt="" class="logo">
</div>
</div>
<div class="left" >
<img src="gym logo.jpeg" alt="" >
<div id="id"></div>OFFICIAL WEBSITE
</div>
</div>
</div>
<div class="middle">
<nav>
<ul class="navbar">
<span> <li><a href="#home">HOME</a></li></span>
<span> <li><a href="#aboutme"> ABOUT</a></li></span>
<span> <li> <a href="#">SERVICES</a></li></span>
<span> <li><a href="#forms"> MESSAGE ME</a></li></span>
</ul>
</nav>
</div>
</header>
<body>
<div class="sound">
<audio controls autoplay loop src="_Relief_Instagram_Music_Hangover_Instrumental_Ringtone_(by Fringster.com).mp3"></audio>
</div>
<div id="home">
<div id="intro">
<h1>Hello , I am<span> Shaunak</span>,@Shaun speaks<br>where desire meets passion</h1>
</div>
<div id="aboutme">
<div class="about">
<h1>About Me</h1>
<p id="para"> I am Shaunak Majumdar,a dedicated and passionate student pursuing mechanical engineering<br>from IIT KGP. My interests lie in web development, data-analytics ,machine-learning, AI and finance too.
<br> I love acting ,playing games,socializing and yep music.
</p>
<div>
<button id="btn" onclick="hide()">Show/Hide</button>
</div>
<div class="container">
<div class="item"><h3>SCHOOL</h3><P>Don Bosco Bandel,Hooghly</P></div>
<div class="item"><h3>COLLEGE</h3><p>IIT Kharagpur</p></div>
<div class="item"><h3>SKILLS</h3><p>HTML,CSS,Javascript<br>,java,C,Node.js</p></div>
<div class="item"><h3>HOME</h3><p>Bandel ,Hooghly</p></div>
</div>
</div>
<br>
<div class="links" >
<a href="https://www.facebook.com/profile.php?id=100095257614531" class="links" target = "_blank">Go to facebook <br></a>
<!-- _blank for open website in new page -->
<a href="https://www.linkedin.com/in/shaunak-majumdar-865a27285/" class="links" target = "_blank">Go to linkedin<br></a>
<a href="https://www.instagram.com/__shaun_ed___?igsh=MXd3Y3F1aGM1cXA4eg==" class="links" target = "_blank">Go to instagram </a>
</div>
<div id ="forms">
<form action="https://formsubmit.co/[email protected]" method="POST">
<div style ="border:8px solid red;" class="formss">
Name <input type = "text" name = "myName" placeholder="yourname"
</div>
<br>
<div >
phoneno <input type = "number" name = "myPhone" placeholder="yourphoneno"
</div><br>
<div >
Email <input type = "email" name = "myemail" placeholder="yourmail"
</div>
<div >
Gender: Male<input type = "checkbox"> FeMale<input type = "checkbox"> Other<input type = "checkbox">
</div>
<div >
<label for = "car">Transport</label>
<select name = "myTransport" id = "transport">
<option value = "in">2-wheeler</option>
<option value = "in">4-wheeler</option>
</select>
<!-- </div> -->
<!-- <div class="entireform">
<input type= “reset” value = "Reset"> -->
</div>
<div class="formtext">
Message section:<br><textarea name = "mytext" rows="10" cols="20"></textarea>
</div>
<div >
<button id ="button1" type= "submit">SUBMIT</button>
</div>
</form><br>
</div>
</div>
</script>
<div class="footer">
<p><h2>>Author: shaunak-majumdar.....</h2> All rights reserved including copyright,patents....<br>
<a href="https://mail.google.com/mail/u/0/#inbox?compose=GTvVlcSMTRsZJmBJRXLCnMmVJZtkJBtkPWKZfdPPxfSrKZptDqnswkngksFGdKBkmMTtSBrMNmpFB" target="blank"><h2>Mail us for further queries</h2>
</a></p>
</footer>
</body>
</html>