-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
132 lines (112 loc) · 4.03 KB
/
Copy pathcode.html
File metadata and controls
132 lines (112 loc) · 4.03 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
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
<!DOCTYPE html>
<html>
<head>
<title>Coffe Bros</title>
<style>
* {
margin: 0;
padding: 0;
}
li {
display: inline;
}
hr {
width: 95%;
margin: auto;
}
</style>
</head>
<body>
<header>
<div style="text-align: center;">
<br>
<figure>
<img
width="250"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTaFNOdf96Er2DNmF8KQm7r9IEZiO_QHgxThw&s"
alt="Pixel coffee "
/>
<h1>Coffee Bros</h1>
<hr>
<br>
<p>Welcome to Coffe Bros, a pixel coffe restaraunt made with love for the ones with a passion about Coffe and Pixel </p>
<nav>
<br>
<ul>
<li><a href ="#menu-section">Menu</a></li>
<br>
<li><a href ="#order-form">Place your order </a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="#menu-section">
<div style="text-align: center">
<br><br>
<h2>Menu</h2>
<hr style= "width: 50%">
<br>
<article>
<figure style="margin:0;display:inline;">
<img
width="150"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQW1xMAuIR6tj8AGxEgFg_cCw9CpKUrXaA_Ug&s"
alt="Espresso Coffe"
/>
<h3>1 - Espresso Coffee </h3>
<p>A concentrated coffee beverage made by forcing hot,<br> high-pressure water through finely-ground coffee beans.</p>
<p><b>$5.0 Pix Coin</b></p>
<br>
<img
width="150"
src="https://static.vecteezy.com/ti/vetor-gratis/p1/44245341-ilustracao-do-cafe-com-pixel-arte-projeto-vetor.jpg"
alt="Cappuccino"
/>
<h3>2 - Cappuccino</h3>
<p>An Italian coffee drink made with a traditional<br> 1:1:1 ratio of espresso, steamed milk, and milk foam.</p>
<p><b>$6.0 Pix Coin</b></p>
<br>
<img
width="150"
src="https://img.freepik.com/vetores-premium/retro-pixel-art-coffee-cup-com-steam-nostalgico-design-de-8-bits-para-cafes-e-jogadores_1292377-17627.jpg?w=360 "
alt="Mocaccino"
/>
<h3>3 - Mocaccino</h3>
<p>A hot or cold coffee drink that combines<br> espresso, steamed milk, and chocolate</p>
<p><b>$7.0 Pix Coin</b></p>
<hr style= "width: 50%">
<br> <br>
</figure>
</article>
</div>
</section>
<section id="#order-form">
<div style="text-align: center">
<h2>Place your order</h2>
<hr style= "width: 50%">
<br>
<form>
<label>Espresso Coffe: <input type ="number" min="0" max="3"></label>
<label>Capuccino: <input type ="number" min="0" max="3"></label>
<label>Mocaccino: <input type ="number" min="0" max="3"></label>
<br> <br>
<label><input type="checkbox"> Strong Coffee</label>
<label><input type="checkbox"> More milk</label>
<label><input type="checkbox"> More chocolate</label>
<label><input type="checkbox"> Caffeine free 🤨</label>
<br> <br>
<label> Any Special Request: </label>
<br>
<label><textarea rows="7" cols="42" placeholder="Write here!"></textarea></label>
<br><br>
<input type="submit" value="Submit order">
</form>
</div>
</section>
</main>
<footer>
<p>Made with love by @Teknologgia 😁</p>
</footer>
</body>
</html>