-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (90 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Default Load Order (DO NOT CHANGE) -->
<!-- Stylesheets -->
<link rel="stylesheet" href="./src/styles/reset.css">
<link rel="stylesheet" href="./src/styles/globalStyles.css">
<link rel="stylesheet" href="./src/styles/header.css">
<link rel="stylesheet" href="./src/styles/nav.css">
<link rel="stylesheet" href="./src/styles/main.css">
<link rel="stylesheet" href="./src/styles/section.css">
<link rel="stylesheet" href="./src/styles/footer.css">
<!-- Scripts Load Order -->
<script src="./src/scripts/main.js" defer></script>
<script src="./src/scripts/renderer.js" defer></script>
<script src="./src/scripts/server.js" defer></script>
<link rel="icon" type="image/ico" href="./src/assets/favicon.ico">
<title>Project FileFolder</title>
</head>
<body>
<header class="header__container">
<div class="header__content">
<div class="header__logo"></div>
<h1 class="header__title">
Project FileFolder
</h1>
</div>
</header>
<nav class="nav__container">
<div class="nav__content">
<input
type="search"
class="nav__input--search input__box"
placeholder="O que está procurando?"
>
</div>
</nav>
<main class="main__container">
<form class="form__container">
<h2 class="form__title">
Adicionar um novo vídeo
</h2>
<div class="form__content--add">
<input
type="text"
class="form__input--add input__box"
placeholder="https://www.youtube.com/watch?v=AbCdE12345"
>
<input
type="text"
class="form__input--title input__box"
placeholder="Título do vídeo"
>
<input
type="text"
class="form__input--category input__box"
placeholder="Categoria do vídeo"
>
</div>
<button class="form__button--add-video">
Adicionar Vídeo
</button>
</form>
<section class="section__container--recent-videos">
<h2 class="section__title--recent">
Adicionados recentemente
</h2>
<ul class="section__list">
</ul>
</section>
</main>
<footer>
<div class="footer__icons--container">
<a href="#top">
<button class="footer__button--home">
Voltar ao topo
</button>
</a>
</div>
<div class="footer__copyright--claim">
<div class="footer__logo"></div>
<p class="footer__copy">
Project FileFolder © 2024 All Rights Reserved
</p>
</div>
</footer>
</body>
</html>