-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
82 lines (65 loc) · 2.86 KB
/
test.html
File metadata and controls
82 lines (65 loc) · 2.86 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
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<!-- Bootstrap CSS -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<!-- Optional Styles and customizations of your own-->
<link rel="stylesheet" href="./styles/my_bootstrap.css">
<link rel="stylesheet" href="./styles/my_style.css">
</head>
<body>
<div class="container">
<p class="miniTitle">CONTACTS</p>
<div class="row row-cols-2">
<div class="col text-center py-3">
<img src="./images/person1.jpg">
<span id="person1">person1</span>
<div class="form-check"></div>
</div>
<div class="col text-center py-3">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
</div>
<div class="col text-center py-3">
<img src="./images/person1.jpg">
<span id="person1">person1</span>
<div class="form-check"></div>
</div>
<div class="col text-center py-3">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
</div>
<div class="col text-center py-3">
<img src="./images/person1.jpg">
<span id="person1">person2</span>
</div>
<div class="col text-center py-3">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
</div>
<div class="col text-center py-3">
<img src="./images/person1.jpg">
<span id="person1">person3</span>
</div>
<div class="col text-center py-3">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
</div>
<div class="col text-center py-3">
<img src="./images/person1.jpg">
<span id="person1">person4</span>
</div>
<div class="col text-center py-3">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
</div>
<div class="col text-center py-3">
<img src="./images/person1.jpg">
<span id="person1">person5</span>
</div>
<div class="col text-center py-3">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
</div>
</div>
</div>
</body>
</html>