-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (107 loc) · 4.7 KB
/
index.html
File metadata and controls
107 lines (107 loc) · 4.7 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="config/css/styles.css">
<script src="config/js/scripts.js" defer></script>
<title>Projetos</title>
</head>
<body>
<header>
<h1>Meus Projetos</h1>
</header>
<main>
<section id="projects">
<div class="project" data-project="blog-semantico">
<h2>Blog Semântico</h2>
<p>Um blog com HTML semântico.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Calculadora de IMC">
<h2>Calculadora de IMC</h2>
<p>Calculadora de Índice de Massa Corporal.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Clone da página de venda do iPhone">
<h2>Clone da Página de Venda do iPhone</h2>
<p>Clone da página de venda do iPhone.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Dev Notes">
<h2>Dev Notes</h2>
<p>Aplicação para notas de desenvolvedor.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Gerador de Box Shadow">
<h2>Gerador de Box Shadow</h2>
<p>Ferramenta para gerar box shadows.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Gerador de QR Code">
<h2>Gerador de QR Code</h2>
<p>Ferramenta para gerar QR Codes.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Gerador de Senhas">
<h2>Gerador de Senhas</h2>
<p>Ferramenta para gerar senhas seguras.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="HDC_HOST">
<h2>HDC HOST</h2>
<p>Projeto de hospedagem.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="instagram-login">
<h2>Instagram Login</h2>
<p>Página de login do Instagram.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Lazy Loading">
<h2>Lazy Loading</h2>
<p>Exemplo de lazy loading.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Site Android">
<h2>Site Android</h2>
<p>Site sobre o sistema Android.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Site Cordel">
<h2>Site Cordel</h2>
<p>Site sobre cordel moderno.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Site Login">
<h2>Site Login</h2>
<p>Página de login.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Site Social">
<h2>Site Social</h2>
<p>Projeto de redes sociais.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Tabuada">
<h2>Tabuada</h2>
<p>Aplicação para gerar tabuada.</p>
<button>Ver Projeto</button>
</div>
<div class="project" data-project="Todo List Avançado">
<h2>Todo List Avançado</h2>
<p>Lista de tarefas avançada.</p>
<button>Ver Projeto</button>
</div>
</section>
<section id="project-viewer">
<div id="iframe-controls">
<button data-size="notebook">Notebook</button>
<button data-size="tablet">Tablet</button>
<button data-size="mobile">Celular</button>
</div>
<iframe id="project-iframe" src="" frameborder="0"></iframe>
</section>
</main>
</body>
</html>