-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
175 lines (175 loc) · 5.94 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Podcast Channel</title>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=IBM+Plex+Sans:wght@400;600&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
crossorigin="anonymous"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="./css/style.min.css" />
</head>
<body>
<!-- HEADER & NAV -->
<div class="container">
<header>
<nav class="nav-bar">
<img src="./img/logo.svg" alt="Logo" class="logo" />
<input type="checkbox" name="checkbox" id="nav-toggle" />
<label for="nav-toggle">
<i class="fas fa-bars show-menu-btn"></i>
<i class="fas fa-times hide-menu-btn"></i>
</label>
<ul class="menu">
<li><a href="#episodes">Episodios</a></li>
<li><a href="#about">Nosotros</a></li>
<li><a href="#guest">Entrevistas</a></li>
<li><a href="#topics">Tópicos</a></li>
</ul>
</nav>
<div class="ml-desk">
<h1 class="title">
Hello <span class="line-thr">world</span> pale blue dot<span
class="blue-dot"
>.</span
>
</h1>
<p class="text">
Un podcast que explora el mundo de la programación. Nuevos
episodios, todos los jueves cada 15 días.
</p>
<a class="btn">Conoce más</a>
</div>
</header>
</div>
<!-- EPISODES SECTION -->
<main>
<div class="episodes container" id="episodes">
<h2 class="title ml-desk">Episodios</h2>
<div class="iframes">
<iframe
src="https://open.spotify.com/embed-podcast/show/2ySVrxGkN6n6frMTo9Nsrt"
allow="encrypted-media"
class="episode-one"
></iframe>
<iframe
src="https://open.spotify.com/embed-podcast/show/4kYCRYJ3yK5DQbP5tbfZby"
allow="encrypted-media"
class="episode-two"
></iframe>
<iframe
src="https://open.spotify.com/embed-podcast/episode/3cWta1iiQSfvrdHaCbLkSD"
allow="encrypted-media"
class="episode-three"
></iframe>
<iframe
src="https://open.spotify.com/embed-podcast/show/2Iibd5A6R7mxkCm4NwNmUn"
allow="encrypted-media"
class="episode-four"
></iframe>
</div>
</div>
</main>
<!-- DIV TO APPLY FLEX ON DESKTOP -->
<div class="phone-about">
<!-- PHONE SECTION -->
<div class="phone-section">
<img src="./img/phone.png" alt="Phone image" />
</div>
<!-- ABOUT SECTION -->
<div class="container about-section" id="about">
<article>
<h2 class="title">De dónde venimos</h2>
<p class="text">
Our posturings, our imagined self-importance, the delusion that we
have some privileged position in the Universe, are challenged by
this point of pale light.
</p>
<p class="text">
Our planet is a lonely speck in the great enveloping cosmic dark. In
our obscurity, in all this vastness, there is no hint that help will
come from elsewhere to save us from ourselves.
</p>
</article>
</div>
</div>
<!-- PICTURES SECTION -->
<section class="pictures-section" id="guest">
<h2 class="title container ml-desk">Invitadas/os estelares</h2>
<div class="pictures">
<img src="./img/grace-hopper.png" alt="Grace Hopper" />
<img src="./img/Katie-Bouman.png" alt="Katie Bouman" />
<img src="./img/Margaret_Hamilton.png" alt="Margaret Hamilton" />
<img
src="./img/computer_in_the_1950s.png"
alt="Computer in the 1950s"
/>
<img
src="./img/Computer_operators.png"
alt="Computer operators with an Eniac"
/>
<img src="./img/susan-kare.png" alt="Susan Kare" />
</div>
</section>
<!-- TOPICS SECTION -->
<section class="container topics-section" id="topics">
<h2 class="title">Algunos de nuestros temas</h2>
<div class="topics">
<div class="topic">
<img src="./img/icon1.svg" alt="Trabajo remoto" />
<h3>Trabajo remoto</h3>
</div>
<div class="topic">
<img src="./img/icon2.svg" alt="Repensando la programación" />
<h3>Repensando la programación</h3>
</div>
<div class="topic">
<img src="./img/icon3.svg" alt="Bases del código" />
<h3>Bases del código</h3>
</div>
<div class="topic">
<img src="./img/icon4.svg" alt="Seguridad informática" />
<h3>Seguridad informática</h3>
</div>
</div>
</section>
<!-- LISTEN SECTION -->
<div class="listen-section">
<div class="container">
<p class="title">¿Quieres las últimas novedades?</p>
<a class="btn">Escucha los episodios</a>
</div>
</div>
<!-- FOOTER -->
<footer class="container">
<p class="text">© 2020— Hello blue pale dot</p>
<div class="social-media">
<a href="#">
<i class="fab fa-spotify"></i>
</a>
<a href="#">
<i class="fab fa-instagram"></i>
</a>
<a href="#">
<i class="fab fa-twitter"></i>
</a>
<a href="#">
<i class="fab fa-facebook"></i>
</a>
<a href="#">
<i class="fab fa-telegram"></i>
</a>
</div>
</footer>
</body>
</html>