-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (80 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<title>Hello, world!</title>
</head>
<body>
<div class="text-center">
<div class="display-1">
<p>Hello World!</p>
</div>
<div class="card" style="width: 18rem; margin: auto;">
<h5 class="card-header">About Cards</h5>
<div class="card-body">
<h5 class="card-title">This is a card title</h5>
<p class="card-text">
This is the body of the card. Cards can hold text, pictures, and
more.
</p>
</div>
</div>
<div class="font-weight-bold">
<br />
<p>This is a description.</p>
</div>
<div class="container">
<div class="alert alert-primary">
This is an alert!
</div>
<a href="http://minorityprogrammers.org/" class="btn btn-secondary"
>This is a button to our site!</a
>
</div>
<br />
<br />
<div class="container">
<div class="row justify-content-center">
<div class="col-md-4">
<div class="card shadow" style="width: 20rem;">
<div class="inner">
<img
class="card-img-top"
src="https://upload.wikimedia.org/wikipedia/commons/a/a5/Tsunami_by_hokusai_19th_century.jpg"
/>
</div>
<div class="card-body text-center">
<h5 class="card-title">The Great Wave</h5>
<p class="card-text">
The Great Wave off Kanagawa (神奈川沖浪裏, Kanagawa-oki Nami
Ura, lit. "Under a wave off Kanagawa"), also known as The
Great Wave or simply The Wave, is a woodblock print by the
Japanese ukiyo-e artist Hokusai.
</p>
<a
href="https://en.wikipedia.org/wiki/The_Great_Wave_off_Kanagawa"
class="btn btn-success"
>Learn More</a
>
</div>
</div>
</div>
</div>
</div>
<br />
<br />
</div>
</body>
</html>