-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojetos.html
45 lines (44 loc) · 1.8 KB
/
projetos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects</title>
<link href="/styles/projetos.css" rel="stylesheet">
<link href="/styles/media.css" rel="stylesheet">
</head>
<body>
<header>
<div id="title">
<h1>Projects</h1>
</div>
<div class="hamburger-menu">
<input id="menu__toggle" type="checkbox" />
<label class="menu__btn" for="menu__toggle">
<span></span>
</label>
<ul class="menu__box">
<li><a class="menu__item" href="index.html"><li>Home</li>
<li><a class="menu__item" href="sobre.html"><li>About</li></a>
<li><a class="menu__item" href="projetos.html"><li>Projects</li></a>
<li><a class="menu__item" href="contato.html"><li>Contact</li></a>
</ul>
</div>
<ul class="list">
<a href="index.html"><li>Home</li></a>
<a href="sobre.html"><li>About</li></a>
<a href="projetos.html"><li>Projects</li></a>
<a href="contato.html"><li>Contact</li></a>
</ul>
</header>
<main>
<a href="https://abnerkaizer.github.io/cg/"><li>Computer Graphics class</li></a>
<a href="https://github.com/abnerkaizer/exemplo-react-app"><li>React App Example</li></a>
<a href="https://github.com/abnerkaizer/costs"><li>Costs</li></a>
<a href="https://github.com/abnerkaizer/wireframe"><li>Wireframe</li></a>
<a href="https://github.com/abnerkaizer/projeto_node_video"><li>RESTful API Node</li></a>
<a href="https://github.com/abnerkaizer/node_jwt"><li>Node JWT</li></a>
</main>
</body>
</html>