This repository was archived by the owner on May 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
59 lines (55 loc) · 2.19 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
<html>
<head>
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="site.css">
<!-- last order wins for 'equal specificity' rules -->
<script src="jquery-3.3.1.min.js"></script>
<script src="site.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
<h1>Welcome to HTML</h1>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-body">
<p>
This introduction includes HTML, CSS, JavaScript and Angular.
</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<button type="button" class="btn btn-sm btn-outline-secondary select">Select</button>
<button type="button" class="btn btn-sm btn-outline-secondary view">View</button>
</div>
<small class="text-muted">9 mins</small>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-body">
<p>
This is non-special paragraph.
</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<button type="button" class="btn btn-sm btn-outline-secondary select">Select</button>
<button type="button" class="btn btn-sm btn-outline-secondary view">View</button>
</div>
<small class="text-muted">9 mins</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<p id="dynamic">
A special paragraph.
</p>
</div>
</div>
</div>
</body>
</html>