37 lines
727 B
HTML
37 lines
727 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>My Profile</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<div class="card">
|
|
<h1>My Profile</h1>
|
|
|
|
<h2>About Me</h2>
|
|
<p>Hello! My name is Siddhi Avhad . I am a web development intern at JIO .</p>
|
|
|
|
<h2>My Skills</h2>
|
|
<ul>
|
|
<li>HTML</li>
|
|
<li>CSS</li>
|
|
<li>JavaScript</li>
|
|
</ul>
|
|
|
|
<h2>Contact</h2>
|
|
<p>Email: siddhiavhad27@gmail.com</p>
|
|
|
|
<h2>My Favorite Website</h2>
|
|
<a href="https://www.freepik.com/free-photos-vectors/landscape" target="_blank">
|
|
Visit Freepik
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html> |