-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
93 lines (86 loc) · 2.96 KB
/
portfolio.html
File metadata and controls
93 lines (86 loc) · 2.96 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header Section -->
<header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- About Section -->
<section id="about" class="section">
<div class="content">
<h1>Hi, I'm JOT AJMANI</h1>
<p>I am a passionate web developer with a knack for creating beautiful and functional websites.</p>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="section">
<h2>My Skills</h2>
<div class="skills-container">
<div class="skill">
<h3>HTML</h3>
<div class="progress-bar">
<div class="progress html"></div>
</div>
</div>
<div class="skill">
<h3>CSS</h3>
<div class="progress-bar">
<div class="progress css"></div>
</div>
</div>
<div class="skill">
<h3>JavaScript</h3>
<div class="progress-bar">
<div class="progress js"></div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="section">
<h2>My Projects</h2>
<div class="projects-container">
<div class="project">
<h3>Project 1</h3>
<p>A cool web application I built using HTML, CSS, and JavaScript.</p>
</div>
<div class="project">
<h3>Project 2</h3>
<p>A responsive website I created for a local business.</p>
</div>
<div class="project">
<h3>Project 3</h3>
<p>An interactive portfolio site to showcase my work.</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section">
<h2>Contact Me</h2>
<form class="contact-form">
<input type="text" placeholder="JOT AJMANI" required>
<input type="email" placeholder="ajmanijot@gmail.com" required>
<textarea placeholder="Looking forward to hearing from you" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<!-- Footer Section -->
<footer>
<p>© 2024 [JOT AJMANI]. All Rights Reserved.</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>