forked from CUNYTechPrep/lab-bootstrap-5.2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alternating.html
54 lines (54 loc) · 2.3 KB
/
alternating.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
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/styles.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<title>Cookie Store</title>
</head>
<body>
<main>
<h2>Our Cookies</h2>
<p>Checkout our latest and delicious cookies.</p>
<div class="container text-center">
<div class="row align-items-center justify-content-center">
<div class="col-sm-12 col-md-8 order-md-1">
<h3>Mint Chocolate</h3>
<p>Tasty mint chocolate cookies</p>
</div>
<div class="col-sm-12 col-md-4 order-md-2">
<img src="images/mint-cookie.png" class="img-fluid rounded-circle" alt="A single mint chocolate cookie" />
</div>
</div>
<div class="row align-items-center justify-content-center">
<div class="col-sm-12 col-md-8 order-md-2">
<h3>Peanut Butter</h3>
<p>Yummy peanut buttery goodness</p>
</div>
<div class="col-sm-12 col-md-4 order-md-1">
<img src="images/peanut-cookie.png" class="img-fluid rounded-circle" alt="A single peanut butter cookie" />
</div>
</div>
<div class="row align-items-center justify-content-center">
<div class="col-sm-12 col-md-8 order-md-1">
<h3>Oatmeal</h3>
<p>Your fitness instructors favorite</p>
</div>
<div class="col-sm-12 col-md-4 order-md-2">
<img src="images/oatmeal-cookie.png" class="img-fluid rounded-circle" alt="A single oatmeal cookie" />
</div>
</div>
<div class="row align-items-center justify-content-center">
<div class="col-sm-12 col-md-8 order-md-2">
<h3>Chocolate Chip</h3>
<p>Gooey chocolate you'll love</p>
</div>
<div class="col-sm-12 col-md-4 order-md-1">
<img src="images/chip-cookie.png" class="img-fluid rounded-circle" alt="A single chocolate chip cookie" />
</div>
</div>
</div>
</main>
</body>
</html>