-
Notifications
You must be signed in to change notification settings - Fork 60
/
SouravMukherjee.html
71 lines (69 loc) · 2.33 KB
/
SouravMukherjee.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sourav Mukherjee - Portfolio</title>
<link rel="stylesheet" href="assets/css/souravmukherjee.css">
</head>
<body>
<header id="btt"style="text-align: center;margin-bottom: 10dp; background-color:#000000;color:#ffffff">
<center>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</center>
</header>
<center>
<section id="home">
<h1>Sourav Mukherjee</h1>
<p>Welcome to my Portfolio -)</p>
<p>I'm passionate about coding and web development.With a knack for learning and a love for technology.</p>
</section>
</center>
<section id="about">
<h1>About Me</h1>
<p>I'm <b>Sourav Mukherjee</b> from Kolkata. Currently pursuing my B.Tech from GCECT in IT.
I love coding and try to understand different programming languages. Currently, I'm learning C++.
Also, I'm very interested in Web Development.
</p>
</section>
<center>
<section id="portfolio">
<h1>Projects</h1>
<p>I'm working on various group projects.</p>
</section>
</center>
<section id="contact" style="background-color:rgb(159, 165, 42);">
<div class="container">
<h2>Contact Here</h2>
<form>
<table>
<tr>
<td><input type="text" placeholder="Your Name" required></td>
</tr>
<tr>
<td><input type="email" placeholder="Your Email" required></td>
</tr>
<tr>
<td><textarea placeholder="Message" required></textarea></td>
</tr>
<tr>
<td><button type="submit">Send</button></td>
</tr>
</table>
</form>
</div>
</section>
<center>
<footer>
<p>© Portfolio. 2024 SOURAV. All Rights Reserved.</p>
</footer>
</center>
</body>
</html>