-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
39 lines (32 loc) · 1.3 KB
/
home.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
<!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="receita.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<title>Home</title>
</head>
<body>
<nav>
<a href="home.html">Home</a>
<a href="receitas.html">Receitas</a>
<a href="cadastro.html">Cadastro</a>
</nav>
<main style="text-align: center;">
<div class="imagem-logo">
<img src="imagens/Receitas150.png" alt="" style="display: inline-block;">
<h1 style="display: inline-block;">Receitas da Tia Jurema</h1>
</div>
<div class="text">
<h2>Bem-vindo(a) ao site da Tia Jurema.<br>
Conheça deliciosas receitas para o dia a dia.
</h2>
</div>
</main>
<footer>
<p> ©Jurema 2022</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</body>
</html>