-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexENO.html
53 lines (47 loc) · 1.8 KB
/
indexENO.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
<!DOCTYPE html>
<html lang="pt-br">
<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>Home</title>
<link rel="stylesheet" href="estilos/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<header>
<span id="burger" onclick="menuClick()" class="material-symbols-outlined">menu</span>
<p>Luciano Oliveira</p>
<span class="EN" id="lang">EN</span>
<menu id="menu-principal">
<ul>
<li><a href="biography.html">Biography</a></li>
<li><a href="philosophy.html">Philosophy</a></li>
<li><a href="playEng.html">Play</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</menu>
</header>
<div id="divrosto">
<img src="imagens/rosto-geral.jpg" id="img-principal" alt="foto de capa de Luciano">
</div>
<main>
<h1>Welcome!</h1>
<p>
Hello, this is my page, on this page I want to tell you a little about myself.
</p>
<p>
This was my first project as a Front-End developer, and a small demonstration of what I learned.
</p>
</main>
<footer>
<div>
<a id="github" target="_blank" href="https://github.com/Oliveira2023">Github</a>
<a target="_blank" href="https://www.linkedin.com/in/luciano-oliveira-87a17682/">Linkedin</a>
</div>
<p>Developed by @liveira</p>
<p>(11) 96359-1532</p>
</footer>
<script src="index.js"></script>
</body>
</html>