-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·58 lines (52 loc) · 2.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name = "description" content = "Upload your audio to Pod with a single click.">
<!-- Google Fonts Link -->
<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&display=swap" rel="stylesheet">
<!-- Favicions -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon_io/favicon-16x16.png">
<link rel="manifest" href="assets/favicon_io/site.webmanifest">
<!-- Css Links -->
<link rel="stylesheet" href="src/css/global.css">
<link rel = "stylesheet" href = "src/css/style.css">
<link rel = "stylesheet" href = "src/css/queries.css">
<!-- JavaScript Links -->
<script type = "module" src = "src/js/app.js"></script>
<title>Pod request access Landing Page</title>
</head>
<body>
<main>
<header class = "header">
<a href = "#logo" class = "logo--link">
<img src = "assets/desktop/logo.svg" alt = "Pod company logo">
</a>
<div class = "header-content">
<h1 class = "header-content__heading">Publish your podcasts <span>everywhere.</span></h1>
<p class = "header-content__text">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 = "flex featured-in__email">
<div class = 'flex group-company__logos'>
<img src = "assets/desktop/spotify.svg" alt = "spotify logo">
<img src = "assets/desktop/apple-podcast.svg" alt = "apple-podcast logo">
<img src = "assets/desktop/google-podcasts.svg" alt = "google-podcast logo">
<img src = "assets/desktop/pocket-casts.svg" alt = "pocket-casts logo">
</div>
<form class = "flex form" id = "form" novalidate>
<div class = "flex email-container">
<label class = "sr-only" for "email">Enter your email:</label>
<input type = "email" id = "email" name = "email" placeholder = "Email address" required/>
<span class = "error-message" aria-live = "polite"></span>
</div>
<button class = "btn">Request Access</button>
</form>
</div>
</div>
</header>
</main>
</body>
</html>