-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·47 lines (38 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/logo.png">
<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=Chivo:wght@300;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<title>Pod request access landing page | Frontend Mentor</title>
</head>
<body>
<div class="overlay">
<header>
<img src="./assets/desktop/logo.svg" alt="pod logo">
</header>
<main>
<h1><span class="highlight">Publish your podcasts</span> everywhere.</h1>
<p>Upload your audio to Pod with a single click. We'll then distribute your podcast to Spotify, Apple Podcasts, Google Podcasts, Pocket Casts and more!</p>
<div class="wrapper">
<form autocomplete="off" novalidate>
<input type="email" name="email" id="email" placeholder="Email address" required>
<input type="submit" class="button" value="Request access" />
<p id="form-error" class="inactive">Oops! Please check your email</p>
</form>
<section class="logos">
<img class="spotify" src="./assets/desktop/spotify.svg" alt="spotify logo">
<img class="apple" src="./assets/desktop/apple-podcast.svg" alt="apple podcast logo">
<img class="google" src="./assets/desktop/google-podcasts.svg" alt="google podcast logo">
<img class="pocket" src="./assets/desktop/pocket-casts.svg" alt="pocket casts logo">
</section>
</div>
</main>
</div>
<script src="./index.js"></script>
</body>
</html>