-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
44 lines (44 loc) · 1.12 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
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web Components | Frontend Mentor</title>
<link
rel="icon"
type="image/svg+xml"
href="./index-page/images/favicon.svg"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./index-page/css/styles.css" />
</head>
<body>
<div class="main-container">
<div class="attribution">
<p>
<span>UI Design for all projects provided by </span>
<a href="https://www.frontendmentor.io/challenges" target="_blank"
>Frontend Mentor</a
>
</p>
<p>
<span>Coded by </span>
<a
href="https://github.com/ibrahimkundlik"
target="_blank"
>ibrahimkundlik</a
>
</p>
</div>
<ul class="projects-cont">
<p class="loading">Loading...</p>
</ul>
<a class="back-top"></a>
</div>
<script src="./index-page/js/script.js" type="module"></script>
</body>
</html>