forked from Rishabhopi/Personal_website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
73 lines (73 loc) · 1.79 KB
/
index1.html
File metadata and controls
73 lines (73 loc) · 1.79 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
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Aarabh's Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Aarabh's Portfolio</h1>
<nav>
<a href="#about">About</a>
<a href="#work">Work</a>
<a href="#contact">Contact</a>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>
BCom 2nd Year & CA Intermediate | Passionate About Tech Innovation & Continuous Learning.
</p>
<ul>
<li><strong>Skills:</strong> Finance,JavaScript, HTML</li>
<li><strong>Experience:</strong> 2+ years</li>
<li><strong>Education:</strong> Bachelor of Commerce</li>
</ul>
</section>
<section id="work">
<h2>My Work</h2>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=QkY02bpKmkw&ab_channel=ZehrVibe">Project 1</a>
<p>
Description of project 1.
</p>
</li>
<li>
<a href="#">Project 2</a>
<p>
Description of project 2.
</p>
</li>
<li>
<a href="#">Project 3</a>
<p>
Description of project 3.
</p>
</li>
</ul>
</section>
<section id="contact">
<h2>Contact Me</h2>
<form action="aarabhofficial@gmail.com">
<label for="name">Name:</label>
<input type="text" id="name">
<br>
<label for="email">Email:</label>
<input type="email" id="email">
<br>
<label for="message">Message:</label>
<textarea id="message"></textarea>
<br>
<input type="submit" value="Send">
</form>
</section>
</main>
<footer>
<p>
Copyright © 2023 Aarabh's Portfolio. All rights reserved.
</p>
</footer>
</body>
</html>