-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (104 loc) · 5.36 KB
/
Copy pathindex.html
File metadata and controls
109 lines (104 loc) · 5.36 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title> <codeAspiras/> | Exemplo de Git</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="wrapper">
<section id="top">
<a href="#" class="logo">[TODO: LOGO]</a>
<nav>
<a href="#intro">Intro</a>
<a href="#about">Sobre nós</a>
<a href="#records">Gravações</a>
<a href="#today-i-learned">#hoje-eu-aprendi</a>
</nav>
</section>
<section id="intro" class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="assets/imgs/intro-1.jpg" />
</div>
<div class="swiper-slide">
<img src="assets/imgs/intro-2.jpg" />
</div>
<div class="swiper-slide">
<img src="assets/imgs/intro-3.jpg" />
</div>
</div>
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</section>
<section id="about">
<h1>Sobre nós</h1>
<p>[TODO: TEXTO]</p>
<div class="flex">
<article>
<h2>O que fazemos</h2>
<p>[TODO: TEXTO]</p>
</article>
<article>
<h2>Como começamos</h2>
<p>[TODO: TEXTO]</p>
</article>
</div>
<article>
<h2>Nossa missão</h2>
<p>[TODO: TEXTO]</p>
</article>
</section>
<section id="records">
<h1>Gravações</h1>
<div id="record-videos" class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<iframe width="560" height="100%" src="https://www.youtube-nocookie.com/embed/tMr_C3p14o0?controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="swiper-slide">
<iframe width="560" height="100%" src="https://www.youtube-nocookie.com/embed/2BSy_C2C-Lk?controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="swiper-slide">
<iframe width="560" height="100%" src="https://www.youtube-nocookie.com/embed/0j3AoTUE7vE?controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="swiper-slide">
<iframe width="560" height="100%" src="https://www.youtube-nocookie.com/embed/72mSCD4VJM0?controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="swiper-slide">
<iframe width="560" height="100%" src="https://www.youtube-nocookie.com/embed/DpgsPVV-SBc?controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</section>
<section id="today-i-learned">
<h1>#hoje-eu-aprendi</h1>
<p>[TODO: TEXTO]</p>
<div class="flex">
<article>
<h2>O que é?</h2>
<p>[TODO: TEXTO]</p>
</article>
<article>
<h2>Pra que serve?</h2>
<p>[TODO: TEXTO]</p>
</article>
</div>
<article>
<h2>Benefícios de praticar</h2>
<p>[TODO: TEXTO]</p>
</article>
</section>
</div>
<div class="copyright">
Copyright © 2023 - <a href="https://codeaspiras.dev">codeAspiras</a>
</div>
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
<script type="text/javascript" src="assets/js/enums.js"></script>
<script type="text/javascript" src="assets/js/main.js"></script>
</body>
</html>