-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask2.html
More file actions
86 lines (84 loc) · 2.44 KB
/
Copy pathtask2.html
File metadata and controls
86 lines (84 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container text-center">
<div class="row">
<h2>Welcome to Our Website</h2>
</div>
<div class="row">
<h3>Look at this button! Wow, let's click on it!</h3>
</div>
<div class="row">
<button type="button" class="btn btn-primary">learn more</button>
</div>
</div>
<div class="container">
<div class="row">
<h3>Let's look at some random pictures!</h3>
</div>
<div class="row">
<div class="col">
<div class="card" style="width: 18rem">
<div class="card-body">
<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>
</div>
<img
src="img1.jpg"
class="card-img-top"
alt="..."
/>
</div>
</div>
<div class="col">
<div class="card" style="width: 18rem">
<div class="card-body">
<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>
</div>
<img
src="img1.jpg"
class="card-img-top"
alt="..."
/>
</div>
</div>
<div class="col">
<div class="card" style="width: 18rem">
<div class="card-body">
<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>
</div>
<img
src="img1.jpg"
class="card-img-top"
alt="..."
/>
</div>
</div>
</div>
<div class="row">
<div class="alert alert-success mg" role="alert">
Thanks for visiting
</div>
</div>
</div>
</body>
</html>