-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css" />
<link rel="stylesheet" href="./style.css" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22>
<text y=%22.9em%22 font-size=%2290%22>🌟</text>
</svg>" />
<title>Frontend Mentor Challenges</title>
</head>
<body>
<div class="container">
<h1>Frontend Mentor Challenges</h1>
<p class="container-small">This is a collection of my completed
<a class="container-small-link" target="_blank" href="https://www.frontendmentor.io/profile/hannah-saurusrex">Frontend Mentor</a>
challenges. These projects have allowed me to gain confidence in my coding skills, and become faster in the process.</p>
<h2>Projects</h2>
<ul id="list"></ul>
</div>
<footer>
Created with
<i class="fas fa-heart"></i>
by
<a href="https://hannahrosecodes.com/">Hannah McMahon</a>. Code on
<a href="https://github.com/hannah-saurusrex">Guthub</a>. Challenge designs by
<a href="https://www.frontendmentor.io/">Frontend Mentor</a>.
</footer>
<script src="script.js"></script>
</body>
</html>