-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (78 loc) · 3.27 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
<!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="reset.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="dracula.css">
<link rel="stylesheet" href="flexbox.css">
<link rel="stylesheet" href="style.css">
</head>
<body class="corpoPrincipal" spellcheck="false">
<header class="cabecalho">
<a href="index.html"><img src="logo.png" class="logo" alt="logo da alura dev"></a>
<input type="search" placeholder="o que busca?" class="busca">
<img src="/img/Vectorlupa.svg" class="busca-mobile">
<img src="author.png" class="perfil">
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</header>
<main class="principal">
<nav class="menu">
<h3 class="titulo titulo-mobile" >Menu</h3>
<ul class="menu-opcoes">
<li>
<div class="menu-editor">
<img src="img/icon-editor.svg" class="editor-img">
<a href="index.html" class="menu-lista editor-txt"> Editor de código</a><br>
</div>
</li>
<li>
<div class="menu-comunidade">
<img src="img/icon-comunidade.svg" class="comunidade-img">
<a href="comunidade.html" class="menu-lista" id="comunidade-txt"> Comunidade</a>
</div>
</li>
<hr>
<li><img src="author.png" class="perfil-mobile"> </li>
</ul>
</nav>
<section class="campo-codigo">
<div class="codigo-wrapper">
<pre><code class="campo-editavel hljs" contenteditable="true" aria-label="editor" id="code"></code></pre>
</div>
<button class="botao-highlight">Visualizar com o Highlight</button>
</section>
<div class="informações">
<div class="seu-projeto">
<h3 class="titulo"> Seu Projeto</h3>
<input type="text" placeholder="Nome do seu projeto" class="nome-projeto" data-project-name>
<textarea type="text" placeholder="Descrição do seu projeto" class="descricao-projeto" data-project-description></textarea>
</div>
<div class="personalizacao">
<h3 class="titulo"> Personalização</h3>
<select class="seletor-linguagem" name="linguagem" data-linguagem>
<option class="linguagem">Python</option>
<option class="linguagem">Java</option>
<option class="linguagem">C</option>
</select>
<input class="cores" type="color" id="color" value="#6BD1FF" data-color>
</div>
<button class="botao-salvar" data-salvar>Salvar Projeto</button>
</div>
</main>
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script>
<script src="index.js"></script>
<script src="seletorCor.js"></script>
<script type="module" src="/componentes/salvaProjeto.js"></script>
<script src="/componentes/burguer.js"></script>
<script src="/componentes/busca.js"></script>
</body>