-
Notifications
You must be signed in to change notification settings - Fork 0
/
TASK_2.html
84 lines (78 loc) · 2.85 KB
/
TASK_2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Palvalasa Sai Joshitha | Portfolio</title>
<link rel="stylesheet" href="stylej.css">
</head>
<body>
<header>
<h1>Palavalasa Sai Joshitha</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#skills">Tools</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<div class="image">
<img src="Joshi_passport.jpeg" alt="pfp">
<p>Hi, I'm Palavalasa Sai Joshitha. I'm a passionate about web with consistent learning. I'm skilled in html, css and js</p>
<p>In this portfolio, you'll find my skills and what I can offer. Let's connect and discuss how I can help you!</p>
</div></section>
<section id="skills">
<h2>Skills</h2>
<ul class="skills-list">
<li>
<i class="fas fa-code"></i> <span>HTML</span>
</li>
<li>
<i class="fas fa-css3-alt"></i> <span>CSS</span>
</li>
<li>
<i class="fas fa-javascript"></i> <span>JavaScript</span>
</li>
</ul>
</section>
<section id="Tools">
<h2>Tools</h2>
<ul class="skills-list">
<li>
<i class="fas fa-code"></i> <span>GITHUB</span>
</li>
<li>
<i class="fas fa-css3-alt"></i> <span>GIT</span>
</li>
<li>
<i class="fas fa-javascript"></i> <span>VSCODE</span>
</li>
</ul>
</section>
<!--<section id="projects">
<h2>Projects</h2>
<p>Temerature converter College website </p>
</section>-->
<section id="contact">
<h2>Contact Me</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<footer>
<p>© [Palavalasa Sai Joshitha] - [2024]</p>
</footer>
<script src="script.js"></script> </body>
</html>