-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.html
More file actions
20 lines (19 loc) · 867 Bytes
/
bootstrap.html
File metadata and controls
20 lines (19 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title> Bootstrap TEst</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h2>My Web Page</h2>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Et nostrum fugiat, itaque quas nesciunt praesentium earum quisquam? Et, voluptatibus quas necessitatibus assumenda fuga harum, ad laborum molestias iure perspiciatis suscipit.</p>
<button class="btn"> Submit</button>
<button class="btn btn-primary"> Submit</button>
<button class="btn btn-warning"> Submit</button>
<div class="alert alert-primary" role="alert">
A simple primary alert—check it out!
</div>
</div>
</body>
</html>