-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (82 loc) · 3.86 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AluraDEV</title>
<link rel="stylesheet" href="./assets/style/css/reset.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;400;700;900&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/455065b29e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./assets/style/css/style.css">
</head>
<body>
<header class="header">
<img src="./assets/imgs/Logo.svg" class="header__logo" alt="Logo da AluraDev">
<input type="text" name="searchBar" placeholder="Busque por algo" class="header__searchBar">
<button type="button" name="button" class="iconButton">
<i class="fas fa-search"></i>
</button>
<button type="button" name="button" class="iconButton">
<i class="fas fa-bars"></i>
</button>
<figure class="header__profile">
<img src="./assets/imgs/profilePic.jpg" alt="" class="header__profilePic">
<figcaption class="header__profileName">Gato Banana</figcaption>
</figure>
</header>
<main class="main">
<nav class="menu">
<h2 class="menu__title">MENU</h2>
<ul class="menu__itemList">
<li class="menu__itemList__item">
<a href="#">
<img src="./assets/imgs/Editor.svg" alt="Ícone do Editor de Código" class="menu__itemList__icon">
</a>
<a class="menu__itemList__link" href="#">
Editor de código
</a>
</li>
<li class="menu__itemList__item">
<a href="#">
<img src="./assets/imgs/Comunidade.svg" alt="Ícone da Comunidade" class="menu__itemList__icon">
</a>
<a class="menu__itemList__link" href="#">
Comunidade
</a>
</li>
</ul>
</nav>
<section class="textEditor">
<div class="textEditor__bgArea">
<div class="textEditor__bgArea__inputArea">
<span class="textEditor__bgArea__inputArea__ball--red"></span>
<span class="textEditor__bgArea__inputArea__ball--orange"></span>
<span class="textEditor__bgArea__inputArea__ball--green"></span>
<textarea name="textEditor" rows="15" class="textEditor__bgArea__inputArea__input"></textarea>
</div>
</div>
<div class="textEditor__buttonDiv">
<button type="button" name="Visualizar" class="textEditor__button">Visualizar com o highlight</button>
</div>
</section>
<aside class="projectManager">
<form class="projectManager__form" action="index.html" method="post">
<label class="projectManager__form__title">SEU PROJETO</label>
<input type="text" name="name" placeholder="Nome do seu projeto" class="projectManager__form__name">
<textarea name="name" placeholder="Descrição do seu projeto" class="projectManager__form__description"></textarea>
<label class="projectManager__form__title">PERSONALIZAÇÃO</label>
<div class="projectManager__customize">
<select class="projectManager__form__dropdownLangs" name="languages">
<option class="projectManager__form__dropdownLangs__option">JavaScript</option>
<option class="projectManager__form__dropdownLangs__option">HTML</option>
<option class="projectManager__form__dropdownLangs__option">CSS</option>
</select>
<input type="color" name="color" class="projectManager__form__colorPicker" value="#6BD1FF">
</div>
<button type="button" name="save" class="projectManager__form__button">Salvar projeto</button>
</form>
</aside>
</main>
</body>
</html>