30 lines
646 B
HTML
30 lines
646 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Social links profile</title>
|
||
|
|
||
|
<link
|
||
|
rel="icon"
|
||
|
type="image/png"
|
||
|
sizes="32x32"
|
||
|
href="/images/favicon-32x32.png"
|
||
|
/>
|
||
|
<link rel="stylesheet" href="styles.css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>Jessica Randall</p>
|
||
|
<p>London, United Kingdom</p>
|
||
|
<p>"Front-end developer and avid reader."</p>
|
||
|
|
||
|
<ul>
|
||
|
<li>GitHub</li>
|
||
|
<li>Frontend Mentor</li>
|
||
|
<li>LinkedIn</li>
|
||
|
<li>Twitter</li>
|
||
|
<li>Instagram</li>
|
||
|
</ul>
|
||
|
</body>
|
||
|
</html>
|