-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (41 loc) · 1.56 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
<!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>InvestCo</title>
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body class="caixa">
<header>
<nav class="nav-bar">
<div class="logo">
<img class="logo" src="/assets/css/img/icons8-investimento-40.png" alt="um gráfico colorido verde e vermelho">
<h1>InvestCo</h1>
</div>
<div class="login-button">
<button><a href="/login.html">Login</a></button>
<button><a href="/index.html">HOME</a></button>
</div>
</nav>
</header>
<main>
<div class="video">
<div class="video-caixa">
<iframe width="560" height="315" src="https://www.youtube.com/embed/8V71ilZWkVI"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</div>
</main>
<footer>
<div class="logo-rodaPe">
<img class="logo" src="/assets/css/img/icons8-investimento-40.png"
alt="um gráfico colorido verde e vermelho">
<h2>InvestCo</h2>
</div>
</footer>
<script src="/assets/js/script.js" type="module"></script>
</body>
</html>