-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (48 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My landing page</title>
<link rel="shortcut icon" href="data:image/x-icon;" type="image/x-icon">
<!-- We need this line below for responsiveness! -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- code a Hero / Banner section -->
<div class="banner">
<h1>LETS MAKE PASTA!</h1>
<h2>Mama'mia!</h2>
</div>
<!-- code a "How it works" section -->
<div class="main">
<h3>Check out these generic things we can do!</h3>
<div class="panels">
<div class="panel">
<h4>Make Pasta</h4>
<img class ="panel-image" width="150px" src="images/stir.svg" alt="">
<hr>
<p>Come and join our awesome pasta making classes.</p>
</div>
<div class="panel">
<h4>Drink wine</h4>
<img class ="panel-image" width="150px" src="images/wine.svg" alt="">
<hr>
<p>Drink some fine italian red wine with your new creation.</p>
</div>
<div class="panel">
<h4>Eat Pasta!</h4>
<img class ="panel-image" width="150px" src="images/spaghetti.svg" alt="">
<hr>
<p>Share a meal with your classmates!</p>
</div>
</div>
</div>
<!-- code a footer -->
<div class="footer">
<div class="panels">
<div class="">You know what a footer is, right?</div>
</div>
</div>
</body>
</html>