-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (79 loc) · 2.64 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Serviços de Design Gráfico</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
}
header {
background-color: #007bff;
color: white;
text-align: center;
padding: 50px 0;
}
header img {
margin-top: 20px;
}
section {
padding: 60px 0;
}
.bg-light {
background-color: #f8f9fa !important;
}
.bg-secondary {
background-color: #6c757d !important;
color: white;
}
footer {
background-color: #343a40;
color: white;
text-align: center;
padding: 20px 0;
}
section h2 {
margin-bottom: 30px;
}
section ul {
list-style-type: none;
padding: 0;
}
section ul li {
margin: 10px 0;
}
</style>
</head>
<body>
<header>
<h1>Serviços de Design Gráfico</h1>
<img src="https://as2.ftcdn.net/v2/jpg/04/60/63/45/1000_F_460634521_wRNAEZe29OTq8INpivFXhKTZv61xMqMG.jpg" alt="Imagem relacionada a design" class="img-fluid">
</header>
<section class="bg-light text-dark">
<div class="container">
<h2 class="text-center">Sobre Nós</h2>
<p class="text-center">Oferecemos serviços de design gráfico de alta qualidade para atender todas as suas necessidades visuais.</p>
</div>
</section>
<section class="bg-secondary">
<div class="container">
<h2 class="text-center">Nossos Serviços</h2>
<ul>
<li>Criação de Logotipos</li>
<li>Design de Cartões de Visita</li>
<li>Materiais para Redes Sociais</li>
<li>Design de Embalagens</li>
</ul>
</div>
</section>
<footer>
<p>© 2024 Serviços de Design Gráfico. Todos os direitos reservados.</p>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>