-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnews.html
43 lines (42 loc) · 1.63 KB
/
news.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/index.css" />
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/8.0.1/normalize.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"
integrity="sha512-NmLkDIU1C/C88wi324HBc+S2kLhi08PN5GDeUVVVC/BVt/9Izdsc9SVeVfA1UZbY3sHUlDSyRXhCzHfr6hmPPw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>Wizarding World | Clone</title>
</head>
<body class="body news">
<header class="header" id="header">
</header>
<main class="main">
<section class="page-hero" id="page-hero">
</section>
<section class="latest" id="latest-posts">
</section>
<div class="separator">
<hr class="separator-hr">
<figure class="separator-ornament__image-container"><img src="./images/ornament.svg" alt="" class="separator-ornament__image"></figure>
<hr class="separator-hr">
</div>
<section class="more">
<h2 class="more__title">More to explore</h2>
<section class="more-posts-container" id="more-posts-container">
</section>
</section>
</main>
<script src="https://unpkg.com/@lottiefiles/[email protected]/dist/lottie-player.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="./js/header.js" type="module"></script>
<script src="./js/index.js" type="module"></script>
</body>
</html>