-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (55 loc) · 2.21 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jane Doe - Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="header-content">
<h1>Jane Doe</h1>
<p>Email: jdoe@email.com | +1 234 567 8910</p>
</div>
</header>
<section id="about">
<h2>Hi, I'm Jane Doe! 👋</h2>
<p>I am a full-stack developer with 2 years of experience in web development...</p>
</section>
<section id="skills">
<h2>Skills</h2>
<div class="skills-container">
<div class="skill-card">HTML <br> 2 years experience</div>
<div class="skill-card">JavaScript <br> 1.5 years experience</div>
<div class="skill-card">Java <br> 0.5 years experience</div>
<div class="skill-card">React <br> 1 year experience</div>
<div class="skill-card">Node.js <br> 1 year experience</div>
<div class="skill-card">CSS <br> 2 years experience</div>
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li><strong>Chatbot</strong> - Built a secure website integrated with a chatbot.</li>
<li><strong>Sentiment Analyzer</strong> - Developed a sentiment analyzer using IBM NLU.</li>
<li><strong>Fashion Website</strong> - Created a multi-page fashion store with a payment gateway.</li>
</ul>
</section>
<section id="recommendations">
<h2>Recommendations</h2>
<p>“Jane is a quick learner and an excellent team player...”</p>
<p>“Working with Jane has been an awesome experience...”</p>
<p>“Jane has in-depth knowledge and is a committed resource...”</p>
</section>
<section id="contact">
<h2>Leave a Recommendation</h2>
<form>
<input type="text" placeholder="Name (Optional)">
<textarea placeholder="Message"></textarea>
<button type="submit">Submit</button>
</form>
</section>
<script src="script.js"></script>
</body>
</html>