-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpgcapuccino.html
46 lines (34 loc) · 1.22 KB
/
pgcapuccino.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Capuccino</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="style2.css">
</head>
<body>
<header>
<a href="#" class="logo"><i class="fas fa-coffee"></i>Café Litoral</a>
<div id="menu-bar" class="fas fa-bars"></div>
<nav class="navbar">
<a href="index.html">Menu</a>
<a href="login.html">Login</a>
</nav>
</header>
<section class="coffee" id="coffee">
<h1 class="heading"><span>Capuccino</span> </h1>
<div class="box-container">
<div class="box">
<img src="img/capuccino.jpg">
<div class="receita">
<h3>Descrição:</h3>
<p>Consiste em um terço de café expresso, um terço de leite vaporizado e um terço de espuma de leite</p>
<h3>Custo:</h3>
<span class="price"> 20R$ </span>
</div>
<a href="index.html" class="btn">Retornar</a>
</div>
</section>
</body>
</html>