-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.08 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
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" href="#" />
<link rel="stylesheet" href="./css/style.css" />
<script
src="https://kit.fontawesome.com/1d175a1c5f.js"
crossorigin="anonymous"
></script>
<!--load all styles -->
<title>Main page of frontend Mentor projects</title>
</head>
<body>
<div class="container">
<h1>Frontend Mentor challenges</h1>
<h2 class="titleSub"></h2>
<ul id="list"></ul>
</div>
<footer>
Created with
<i>♥️</i>
by
<a target="_blank" href="https://www.frontendmentor.io/">Florin Pop</a>.
Code on
<a target="_blank" href="https://github.com/florinpop17">GitHub</a>.
Design by
<a target="_blank" href="https://twitter.com/sebascarreram"
>Sebastian Carrera Medina</a
>
</footer>
<script src="./script.js" type="module"></script>
</body>
</html>