-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (47 loc) · 1.79 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
<!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>Paulo Toledo</title>
<!-- nav horizontal -->
<link rel="stylesheet" href="./static/styles.css">
<!-- -->
<!-- nav vertical -->
<!-- <link rel="stylesheet" href="./static/styles2.css"> -->
<!-- -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;1,600&display=swap" rel="stylesheet">
</head>
<body>
<header id="topbar">
<nav id="nav">
<button id="menu-btn">Menu</button>
<ul class="menu-items">
<li><a href="./index.html">Inicio</a></li>
<li><a href="./pages/sobre.html">Sobre</a></li>
<li><a href="./pages/portfolio.html">Portfolio</a></li>
<li><a href="./pages/novidades.html">Novidades</a></li>
<li><a href="./pages/contato.html">Contato</a></li>
</ul>
</nav>
</header>
<div id="conteudo-principal">
<div id="bem-vindo">
<div id="welcome-message">
<img width="240px" height="240px" src="./static/foto.jpg" id="welcome-img">
<p>Olá, eu sou o</p>
<p style="color: #17d4ff;">Paulo</p>
<p class="subtitle">Desenvolvedor Web</p>
</div>
<a href="./pages/sobre.html"></a>
</div>
<div class="welcome-buttons">
<a href="./pages/sobre.html" id="sobre-mim">Sobre mim</a>
</div>
</div>
<script src="./static/script.js"></script>
</body>
</html>