Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
SartHak-0-Sach committed Jun 7, 2024
1 parent 9bf925b commit 5f41370
Showing 1 changed file with 40 additions and 45 deletions.
85 changes: 40 additions & 45 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,48 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">

<title>Social links profile</title>

<link rel="stylesheet" href="style.css">

</head>
<body>

<div class="container">
<div class="profile-pic">

<img src="/assets/images/avatar-jessica.jpeg" alt="display picture of user">
<br>

<h1>Jessica Randall</h1>
<p>London, United Kingdom</p>
<br>
<p>"Front-end developer and avid reader"</p>
<br>

<div class="social-links"><h4>GitHub</h4></div>
<div class="social-links"><h4>Frontend Mentor</h4></div>
<div class="social-links"><h4>LinkedIn</h4></div>
<div class="social-links"><h4>Twitter</h4></div>
<div class="social-links"><h4>Instagram</h4></div>

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>Social links profile component</title>

<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/images/favicon-32x32.png"
/>

<link rel="stylesheet" href="style.css" />
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<div class="container">
<img src="./assets/images/avatar-jessica.jpeg" alt="jessica" id="image" />
<div id="name">Jessica Randall</div>
<div id="country">London, United Kingdom</div>
<div id="description">"Front-end developer and avid reader."</div>

<div class="buttons">
<a href="#" class="btn">GitHub</a>
<a href="#" class="btn">Frontend Mentor</a>
<a href="#" class="btn">LinkedIn</a>
<a href="#" class="btn">Twitter</a>
<a href="#" class="btn">Instagram</a>
</div>
</div>
</div>

Jessica Randall
London, United Kingdom
"Front-end developer and avid reader."

GitHub
Frontend Mentor
LinkedIn
Twitter
Instagram

</body>
</html>
</body>
</html>

0 comments on commit 5f41370

Please sign in to comment.