-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·106 lines (97 loc) · 4.19 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!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/favicon-32x32.png">
<link rel="preconnect"
href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Chivo:wght@300&display=swap"
rel="stylesheet">
<link rel="stylesheet"
href="stlye.css">
<script src="form.js"
defer></script>
<title>Frontend Mentor | Pod request access landing page</title>
</head>
<body>
<!--<img src="./assets/desktop/logo.svg"
alt="">
<div class="panel">
<h2 class="main_heading">
<span class="main_heading_title">Publish your podcasts</span>
<span class="main_heading_subtitle">everywhere.</span></h2>
<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>
<p>Request access</p>
</div>-->
<div class="align-in-viewport">
<div class="align-in-viewport_item">
<div class="layout mobile-layout mobile-layout_background">
<div class="layout_left ">
<div class="layout_logo mobile-layout_logo">
<img src="./assets/desktop/logo.svg"
alt="">
</div>
<div class="layout_panel mobile-layout_panel panel">
<h2 class="heading panel_heading">
<span class="panel_title">Publish your podcasts</span>
<span class="panel_subtitle">everywhere.</span>
</h2>
<p class="panel_body">
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="podcast-platforms panel_podcast-platforms">
<ul class="podcast-platforms_list">
<li class="podcast-platforms_item"><img
class="podcast-platforms_image"
src="./assets/desktop/spotify.svg"
alt="spotify"></li>
<li class="podcast-platforms_item"><img
class="podcast-platforms_image"
src="./assets/desktop/apple-podcast.svg"
alt="apple podcast"></li>
<li class="podcast-platforms_item"><img
class="podcast-platforms_image"
src="./assets/desktop/google-podcasts.svg"
alt="google podcasts"></li>
<li class="podcast-platforms_item">
<img src="./assets/desktop/pocket-casts.svg"
class="podcast-platforms_image"
alt="pocket casts"></li>
</ul>
</div>
<div class="panel_form">
<form action=" " class="form">
<input class="form_input"
id='email-input'
placeholder="Email address"
autocomplete="off">
<button
class="form_button">Request
Access
</button>
</form>
<p class="form_error-message">Oops! please check your
email</p>
</div>
</div>
</div>
<div class="layout_background-image background_image">
</div>
<div class="dots"></div>
</div>
</div>
</div>
</div>
</body>
</html>