-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (121 loc) · 4.43 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<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>Candelivery</title>
<link rel="shortcut icon" href="favicon.svg" type="image/svg" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<section>
<header>
<nav class="nav">
<img class="nav-logo" src="svg/logo.svg" alt="Logo for Candelivery" />
<div class="navlinks-container">
<ul class="navlinks">
<li><a href="#">Order</a></li>
<li><a href="#">Menu</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</nav>
</header>
<div class="text-container">
<div class="text-home">
<h1 class="text-first">Candy is</h1>
<span class="text-second">
<h1 class="text-one">a</h1>
<h1 class="text-two">r</h1>
<h1 class="text-three">t</h1>
<h1 class="text-four">.</h1>
</span>
</div>
<p class="text-meet">
Meet our sweets and place your order, we deliver on the same day
</p>
<div class="btn-container">
<a class="btn-download" href="#">Download App for Android and iOS</a>
<a class="btn-menu" href="#">See Menu</a>
</div>
<p class="text-final">Make your life more sweet!</p>
</div>
<div class="bg-home">
<img src="img/bg-home.png" alt="Background Home" />
</div>
</section>
<section class="section-quality">
<div class="title">
<h2>Quality</h2>
</div>
<div class="container-content">
<div>
<img src="img/mockaroon.png" alt="Macarons" />
<p class="text-macaron">
When we decide to create the Candelivery, our pillars to build it is
ever: A <strong>delicious</strong> candy that make you feel really
good, <strong>beautiful</strong> candies like an art, and the most
important, the <strong>quality</strong> to our clients have a good
experience!
</p>
</div>
<div>
<p class="text-donuts">
We started in 2015 and we are still delivering our products with
quality today. This has always been one of our pillars and we
continue to follow it
</p>
<img src="img/donuts.png" alt="Donuts" />
</div>
</div>
</section>
<section class="section-delivery">
<h2>Easy and Fast to Order</h2>
<div class="container-delivery">
<img src="svg/checking.svg" alt="Searching, ordering and buying image" />
<div class="container-ordering">
<img src="img/ordering.png" alt="Ordering a product" />
<img src="img/buying.png" alt="Buying a product" />
<img src="img/delivering.png" alt="Delivering a product" />
</div>
</div>
</section>
<section class="section-contact">
<h2>Contact</h2>
<div class="container-contacts">
<div class="container-message">
<label>Name</label>
<input type="text" placeholder="Name" required />
<label>E-mail</label>
<input type="email" placeholder="E-mail" required />
<label>Message</label>
<textarea type="text" required placeholder="Message"></textarea>
<button type="submit">Send</button>
</div>
<div class="container-contact">
<h3>Contacts</h3>
<ul>
<li>11 9999 9999</li>
<li>[email protected]</li>
<li>São Paulo, SP - Center</li>
</ul>
<h3 >Social Media</h3>
<img class="social-media" src="svg/facebook-icon.svg" alt="Facebook Icon" />
<img class="social-media" src="svg/instagram-icon.svg" alt="Instagram Icon" />
<img class="social-media" src="svg/twitter-icon.svg" alt="Twitter Icon" />
</div>
</div>
</section>
<footer class="footer">
<img src="svg/logo.svg" alt="Logo Candelivery" />
<p>Candelivery. Some rights reserved.</p>
</footer>
</body>
</html>