-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.22 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
<!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="./scss/style.css">
<link rel="stylesheet" href="./scss/tablet.css" media="(min-width: 680px)">
<link rel="stylesheet" href="./scss/desktop.css" media="(min-width: 1020px)">
<title>Rick and Morty</title>
</head>
<body>
<main>
<header>
<div>
<img src="./images/logo.png" alt="">
<a href="">Help</a>
<a href="">About</a>
<a href="">Docs</a>
</div>
</header>
<section class="banner">
<img class="banner__img" src="./images/banner.png" alt="Rick and Morty">
</section>
<section class="cards__section">
<div class="title__div--container">
<h1>Characters</h1>
</div>
<div class="main-cards--container">
</div>
<div class="button--container">
<button id="load-more" onclick="loadMore()">Load more</button>
</div>
</section>
</main>
<script src="./scripts/main.js"></script>
</body>
</html>