Initial commit
This commit is contained in:
commit
5f2b3da4db
6 changed files with 34 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
.vite/
|
||||||
|
node_modules/
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Frontend Mentor - Social links profile solution
|
||||||
|
|
||||||
|
This is a solution to the [Social links profile challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/social-links-profile-UG32l9m6dQ). Frontend Mentor challenges help you improve your coding skills by building realistic projects.
|
29
index.html
Normal file
29
index.html
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
<!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>
|
BIN
public/fonts/Inter-VariableFont_slnt,wght.ttf
Normal file
BIN
public/fonts/Inter-VariableFont_slnt,wght.ttf
Normal file
Binary file not shown.
BIN
public/images/avatar-jessica.jpeg
Normal file
BIN
public/images/avatar-jessica.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.6 KiB |
BIN
public/images/favicon-32x32.png
Normal file
BIN
public/images/favicon-32x32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1 KiB |
Reference in a new issue