-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (59 loc) · 1.94 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rick and Morty API</title>
<link rel="stylesheet" href="./static/css/styles.css">
</head>
<body>
<div class="placeholder-container">
<h1 id="name-placeholder" class="character-name-placeholder"></h1>
</div>
<div class="grid">
<span class="asset top">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="line"></span>
</span>
<img class="logo" src="./static/img/rm.svg" width="280" alt="">
<div class="social">
<a href="https://instagram.com/mancilla_jona" target="_blank">
<img src="./static/img/instagram.svg" alt="">
</a>
<a href="https://facebook.com/mancillajonathan" target="_blank">
<img src="./static/img/facebook.svg" alt="">
</a>
<a href="https://twitter.com/mancillajona" target="_blank">
<img src="./static/img/twitter.svg" alt="">
</a>
</div>
<div class="navigation name">
<a href="#">Name</a>
</div>
<div id="character-name-container" class="character-name-container">
</div>
<div id="character-image-container" class="character-image-container">
<!-- <img class="character-image" src="https://rickandmortyapi.com/api/character/avatar/1.jpeg" alt=""> -->
</div>
<div class="navigation about">
<a href="#">About</a>
</div>
<div id="character-description-container" class="character-description-container">
</div>
<span class="asset bottom">
<span class="line"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</span>
<div></div>
<div class="learn-more">
<span>learn more</span>
</div>
<div class="arrow" id="load-next"></div>
</div>
<script type="module" src="static/js/app.js"></script>
</body>
</html>