-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (84 loc) · 2.89 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
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
<!DOCTYPE html>
<html>
<head>
<title>She Codes Plus</title>
<meta charset="UTF-8" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
/>
<link href="src/styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container">
<img src="images/logo.png" alt="She Codes Plus Logo" class="logo" />
<h1>Bootstrap</h1>
<h3>Challenge 1</h3>
<p>
Import the latest version of Boostrap CSS to this page <br />
👉 <a href="https://getbootstrap.com/" target="_blank"> Bootstrap </a>
</p>
<h3>Challenge 2</h3>
<p>
Move the following list into a layout of 4 columns <br />
👉
<a
href="https://getbootstrap.com/docs/4.3/layout/grid/"
target="_blank"
>
Bootstrap
</a>
</p>
<div class="row">
<div class="col-3">Today</div>
<div class="col-3">Tomorrow</div>
<div class="col-3">Weekend</div>
<div class="col-3">Next week</div>
</div>
<h3>Challenge 3</h3>
<p>Add a bootstrap red button here</p>
👉
<a href="https://getbootstrap.com/docs/4.3/components/buttons/"
>Buttons</a
><br>
<button type="button" class="btn btn-danger">Danger</button>
<h3>Challenge 4</h3>
<p>
Display 3 cards in a a grid of 3 columns <br />
👉
<a
href="https://getbootstrap.com/docs/4.3/components/card/"
target="_blank"
>
Cards
</a>
<div class="row">
<div class="col card m-3" >
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
<div class="col card m-3" >
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
<div class="col card m-3" >
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
</p>
<script src="src/index.js"></script>
</div>
</body>
</html>