-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (62 loc) · 2.12 KB
/
index.html
File metadata and controls
62 lines (62 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<section id="hero">
<h1>Welcome to my portfolio!</h1>
<p>I'm a web developer based in India and I specialize in Html,Css and javascript.</p>
<a href="#portfolio" class="btn">View My Work</a>
</section>
<section id="about">
<h2>About Me</h2>
<img src="profile-pic.jpg" alt="My Profile Picture">
<p>I am a CS undergrad , I love tring out new stuff, my hobbies include reading, sketching.</p>
</section>
<section id="portfolio">
<h2>Portfolio</h2>
<div class="projects">
<div class="project">
<img src="project1.jpg" alt="Project 1">
<h3>Project 1</h3>
<p> brief description about my project and my role in it. link to view the project.</p>
</div>
<div class="project">
<img src="project2.jpg" alt="Project 2">
<h3>Project 2</h3>
<p>brief description about my project and my role in it. link to view the project.</p>
</div>
<div class="project">
<img src="project3.jpg" alt="Project 3">
<h3>Project 3</h3>
<p> brief description about my project and my role in it. link to view the project.</p>
</div>
</div>
</section>
<section id="contact">
<h2>Contact Me</h2>
<form action="submit-form.php" method="post">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="taniyasouza@gmail.com" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<p>Copyright © 2023 | My Portfolio</p>
</footer>
</body>
</html>