-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (58 loc) · 1.55 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
<!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="./style/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Arvo&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@600&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Solway:wght@300&display=swap"
rel="stylesheet"
/>
<title>Flataculties</title>
</head>
<body>
<div class="logo">
<h1>Flatacuties</h1>
<h2 class="smaller-header">vote for the cutest animal</h2>
</div>
<div id="character-bar">
<!-- show characters names here -->
</div>
<div class="characterInfo">
<div id="detailed-info">
<p id="name">Character's Name</p>
<img
id="image"
src="./assets/pngwing.com.png"
alt="Character's Name"
/><!-- display character image here -->
<h4>Total Votes: <span id="vote-count">Character's Votes</span></h4>
<form id="votes-form">
<input
type="text"
placeholder="Enter Votes"
id="votes"
name="votes"
/>
<input type="submit" value="Add Votes" />
</form>
<button id="reset-btn">Reset Votes</button>
</div>
<script src="./src/get.js"></script>
</div>
<script src="./src/get.js"></script>
</body>
</html>