-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (84 loc) · 2.83 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Big Host - Hospedagem para sites</title>
<link rel="stylesheet" href="css/estilos.css" >
</head>
<body>
<header>
<h1>Big Host</h1>
<nav>
<ul>
<li><a href="#sobre">Sobre</a></li>
<li><a href="#precos">Preços</a></li>
<li><a href="#portifolio">Portifólio</a></li>
<li><a href="#contato">Contato</a></li>
</ul>
</nav>
</header>
<section class="content" id="sobre">
<h2>SOBRE</h2>
<p>
A BigHost é uma empresa brasileira de hospedagem de sites, serviços de internet e computação em nuvem, líder no Brasil e na América Latina segundo pesquisa da International Data Corporation em 2011.
</p>
<button class="botao" type="button"><a href="#contato">Entre em contato</a></button>
</section>
<section class="content" id="precos">
<h2>PREÇOS</h2>
<table>
<th>Tipo</th>
<th>Adicionais</th>
<th>Duração</th>
<th>Preço</th>
<tr>
<td>Compartilhada</td>
<td>SSD ilimitado</td>
<td>3 meses</td>
<td>R$ 20,00</td>
</tr>
<tr>
<td>VPS</td>
<td>SSD ilimitado + Dominio Grátis</td>
<td>5 meses</td>
<td>R$ 60,00</td>
</tr>
<tr>
<td>Dedicado</td>
<td>Controle Total</td>
<td>1 ano</td>
<td>R$ 120,00</td>
</tr>
</table>
</section>
<section class="content" id="portifolio">
<h2>PORTIFÓLIO</h2>
<img src="img/portfolio-1.jpg" alt="cogumelos" >
<img src="img/portfolio-2.jpeg" alt="" class="src">
<img src="img/portfolio-3.jpeg" alt="" class="src">
<img src="img/portfolio-4.jpg" alt="" class="src">
<img src="img/portfolio-5.jpeg" alt="" class="src">
<img src="img/portfolio-6.jpeg" alt="" class="src">
</section>
<section class="content" id="contato">
<h2>CONTATO</h2>
<form>
<fieldset>
<label for="nome">Nome</label>
<input type="text" placeholder="Seu nome" id="nome">
<label for="tel">Telefone</label>
<input type="tel" placeholder="75-4343-4949" id="tel">
<label for="email">E-mail</label>
<input type="email" placeholder="[email protected]" id="email">
<label for="msg">Menssagem</label>
<textarea id="msg" placeholder="Sua mensagem aqui"></textarea>
<input type="submit" class="botao" value="Enviar">
</fieldset>
</form>
</section>
<footer>
<h3>Desenvolvido por AlunoX</h3>
<span class="copyright">Copyright <a href="https://github.com/mcilva" target="_blank">© mcilva</a> 2018</span>
</footer>
</body>
</html>