-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (92 loc) · 3.87 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Alura Dev</title>
<link rel="stylesheet" href="style/reset.css">
<link rel="stylesheet" href="style/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
</head>
<body>
<header>
<div class="header-bar">
<img class="logo" src="assets/logo.png" alt="Alura Dev Logo">
<input class="input-bar" type="text" placeholder="Busque por algo">
<div class="author">
<img class="author-picture" src="assets/foto-perfil.png" alt="Profile Picture">
<p class="author-name">Igor</p>
</div>
<div class="burguer-menu">
<img class="magnifier" src="assets/magnifier.png" alt="search-icon">
<img class='burguer' src="assets/burguer.png" alt="Menu Hamburguer">
</div>
</div>
</header>
<main>
<div class="menu">
<h3 class="menu-header">Menu</h3>
<ul class="table-head">
<li class="menu-item">
<img class="icon" src="assets/html-symbol.svg" alt="icon-menu">
<a href="">Editor de código</a>
</li>
<li class="menu-item">
<img class="icon" src="assets/community-icon.svg" alt="icon-menu">
<a href="">Comunidade</a>
</li>
</ul>
</div>
<div class="code-area">
<div class="border-text-field">
<div class="code-editor-background">
<div class="dots">
<div class="upper-dot red-dot"
style="background-color: #FF5F56; border-radius: 50%; width: 12px; height: 12px;"></div>
<div class="upper-dot yellow-dot"
style="background-color: #FFBD2E; border-radius: 50%; width: 12px; height: 12px;"></div>
<div class="upper-dot green-dot"
style="background-color: #27C93F; border-radius: 50%; width: 12px; height: 12px;"></div>
</div>
<textarea class="text-field"></textarea>
</div>
</div>
<div class="syntax-highlight-button">
<button>Visualizar com highlight</button>
</div>
</div>
<div class="project-data">
<div class="project-data-fields">
<h3 class="menu-header project">Seu Projeto</h3>
<ul class="project-fields">
<li class="project-item">
<input class="input-field project-name" type="text" placeholder="Nome do seu projeto">
</li>
<li class="project-item">
<input class="input-field project-description" type="text"
placeholder="Descrição do seu projeto">
</li>
</ul>
</div>
<div class="personalize">
<h3 class="menu-header select-title">Personalização</h3>
<div class="select-class">
<select class="select-input">
<option>JavaScript</option>
<option>HTML</option>
<option>CSS</option>
</select>
</div>
<input class="input-field color-picker" type="color" value="#6BD1FF">
</div>
<div class="submit-button">
<button>Salvar Projeto</button>
</div>
</div>
</main>
</body>
<footer>
</footer>
</html>