-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
112 lines (104 loc) · 3.48 KB
/
Copy pathIndex.html
File metadata and controls
112 lines (104 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Front-End-Master</title>
<link rel="stylesheet" href="Index.css" />
<link rel="stylesheet" href="normalize.css" />
</head>
<body>
<div class="main">
<div class="row">
<article class="yellow">
<h3>Boston Cream Pie</h3>
<img src="Images\boston-cream.jpg" alt="No Image" />
<p>
Boston's famous dessert, a combination of yellow cake, vanilla
pudding, and chocolate frosting.
</p>
<p><a href="#">Read more >></a></p>
</article>
<article class="yellow">
<h3>Coconut Cream Pie</h3>
<img src="Images\coconut-cream.jpg" alt="No Image" />
<p>
Coconut cream pie will take you to an island escape. Especially
delicious in winter.
</p>
<p><a href="#">Read more >></a></p>
</article>
<article class="yellow">
<h3>Key Lime Pie</h3>
<img src="Images\keylime-pie.jpg" alt="No Image" />
<p>
Key lime pie is based on the tiny key limes from Florida. These
limes are less sour than conventional limes.
</p>
<p><a href="#">Read more >></a></p>
</article>
<article class="yellow">
<h3>Pumpkin Pie</h3>
<img src="Images\pumpkin-pie.jpg" alt="No Image" />
<p>
A staple of every Thanksgiving dinner table, pumpkin pie is
delicious any time of year.
</p>
<p><a href="#">Read more >></a></p>
</article>
</div>
<div class="row">
<article class="pink">
<h3>Key Lime Pie</h3>
<img src="Images\keylime-pie.jpg" alt="No Image" />
<p>
Key lime pie is based on the tiny key limes from Florida. These
limes are less sour than conventional limes.
</p>
<p><a href="#">Read more >></a></p>
</article>
<article class="pink">
<h3>Pumpkin Pie</h3>
<img src="Images\pumpkin-pie.jpg" alt="No Image" />
<p>
A staple of every Thanksgiving dinner table, pumpkin pie is
delicious any time of year.
</p>
<p><a href="#">Read more >></a></p>
</article>
</div>
<div class="row">
<article class="yellow col-3">
<h3>Boston Cream Pie</h3>
<img src="Images\boston-cream.jpg" alt="No Image" />
<p>
Boston's famous dessert, a combination of yellow cake, vanilla
pudding, and chocolate frosting.
</p>
<p><a href="#">Read more >></a></p>
</article>
<article class="blue">
<h3>Coconut Cream Pie</h3>
<img src="Images\coconut-cream.jpg" alt="No Image" />
<p>
Coconut cream pie will take you to an island escape. Especially
delicious in winter.
</p>
<p><a href="#">Read more >></a></p>
</article>
</div>
<div class="row">
<article class="purple">
<h3>Boston Cream Pie</h3>
<img src="Images\boston-cream.jpg" alt="No Image" />
<p>
Boston's famous dessert, a combination of yellow cake, vanilla
pudding, and chocolate frosting.
</p>
<p><a href="#">Read more >></a></p>
</article>
</div>
</div>
</body>
</html>