-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (58 loc) · 2.74 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
<!DOCTYPE html>
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<title>We are the Champions</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter&family=Josefin+Sans:wght@700&display=swap" rel="stylesheet">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- Stylesheets -->
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<header>
<img src="assets/images/freddie.png" alt="picture of a singer holding a microphone with arm in the air">
<h1>We are the Champions</h1>
<form id="form">
<textarea
id="endorsement-input"
placeholder="Write your endorsements here"
name="endorsement"
required
></textarea>
<input
id="from"
type="text"
placeholder="From"
name="from"
required
>
<input
id="to"
type="text"
placeholder="To"
name="to"
required
>
<button type="submit">Publish</button>
</form>
</header>
<section class="endorsements-section" id="endorsements-section">
<h2>- Endorsements -</h2>
<div class="endorsements" id="endorsements">
<!-- dynamically add endorsements here -->
</div>
</section>
</div>
<script src="index.js" type="module"></script>
</body>
</html>