-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cupcake - Recipe Card</title>
<link rel="shortcut icon" href="./favicon.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="outer">
<div class="inner"></div>
<div class="inner-detail">
<div class="header">
<h1>Chocolate Cupcakes</h1>
<img src="./five-star.png" alt="">
<p>If you are a fan of cupcakes, then you will love our Chocolate Cupcakes Recipe. We <br> Complete these over-the-top cupcakes with sprinkles.</p>
<div class="table">
<table>
<tr class="row">
<td class="hands">Hands-on Time</td>
<td class="total">Total Time</td>
<td class="yield">Yield</td>
</tr>
<tr class="purple-row">
<td class="purple-hands">30 min</td>
<td class="purple-total">40 min</td>
<td class="purple-yield">40 min</td>
</tr>
</table>
</div>
</div>
</div>
<button>VIEW RECIPE <img src="./icons8-arrow-32.png" alt=""></button>
</div>
</body>
</html>