-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.html
More file actions
106 lines (100 loc) · 4.17 KB
/
store.html
File metadata and controls
106 lines (100 loc) · 4.17 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Store - GhzHost</title>
<link rel="stylesheet" href="../css/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="main-container">
<header class="topbar">
<div class="left">
<img src="../img/ia-chat.png" alt="Chat Icon" class="icon"> Chat
</div>
<div class="right">
<img src="../img/login.png" alt="Login Icon" class="icon"> <a href="#">Login</a>
</div>
</header>
<nav class="navbar">
<div class="logo">
<img src="../img/logo.png" alt="GhzHost Logo">
<span>GhzHost</span>
</div>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="store.html">Store</a></li>
<li><a href="anuncios.html">Anúncios</a></li>
<li><a href="base-conhecimento.html">Base de conhecimento</a></li>
<li><a href="mais.html">Mais</a></li>
<li><a href="contas.html">Contas</a></li>
</ul>
</nav>
<section class="hero">
<div class="hero-text">
<h1><span class="highlight-lightblue">Nossa</span><span class="highlight-blue"> Store</span></h1>
<p>Descubra todos os nossos produtos e serviços de hospedagem de alta qualidade.</p>
<div class="buttons">
<button class="btn btn-blue">Ver Produtos</button>
<button class="btn btn-outline">Promoções</button>
</div>
</div>
<div class="hero-img">
<img src="../img/store.png" alt="Store">
</div>
</section>
<section class="pricing">
<div class="card">
<img src="../img/Planos.svg" alt="Plano Basic" class="plan-bg">
<h2>Basic</h2>
<ul>
<li>✔ 5 GB SSD Storage</li>
<li>✔ 250GB Bandwidth</li>
<li>✔ 5 Websites Included</li>
<li>✔ FREE SSL Certificates</li>
<li>✔ LiteSpeed with LSCache</li>
<li>✔ Free Domain Included</li>
<li>✔ 24/7 Phone Support</li>
</ul>
<p class="price">Price: $10.00</p>
<button class="btn btn-blue">Compre Agora</button>
</div>
<div class="card">
<img src="../img/Planos.svg" alt="Plano Delux" class="plan-bg">
<h2>Delux</h2>
<ul>
<li>✔ 10 GB SSD Storage</li>
<li>✔ 500GB Bandwidth</li>
<li>✔ 10 Websites Included</li>
<li>✔ FREE SSL Certificates</li>
<li>✔ LiteSpeed with LSCache</li>
<li>✔ Free Domain Included</li>
<li>✔ 24/7 Phone Support</li>
</ul>
<p class="price">Price: $20.00</p>
<button class="btn btn-blue">Compre Agora</button>
</div>
<div class="card">
<img src="../img/Planos.svg" alt="Plano Ultra" class="plan-bg">
<h2>Ultra</h2>
<ul>
<li>✔ 50 GB SSD Storage</li>
<li>✔ 500GB Bandwidth</li>
<li>✔ 100 Websites Included</li>
<li>✔ FREE SSL Certificates</li>
<li>✔ LiteSpeed with LSCache</li>
<li>✔ Free Domain Included</li>
<li>✔ 24/7 Phone Support</li>
</ul>
<p class="price">Price: $60.00</p>
<button class="btn btn-blue">Compre Agora</button>
</div>
</section>
</div>
<footer>
<img src="../img/footer.svg" alt="Rodapé">
</footer>
</body>
</html>