-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3-JSPractice.html
52 lines (39 loc) · 1.9 KB
/
3-JSPractice.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- mobileView-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- bootstrap icons-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!-- bootstrap 5-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- any future css-->
<link rel="stylesheet" href="css/3-JSPractice.css">
<title>JavaScript Practice.</title>
</head>
<body>
<section class="card border-0">
<h4 class="card-title d-flex justify-content-center m-auto mb-5 mt-5">JS Things 3/3 (:</h4>
<section class="card-body container d-flex flex-wrap justify-content-center" id="multiCollapseExample1">
<div class="box card-subtitle col-4 border p-5 rounded-circle d-sm-none d-md-flex"></div>
<div class="box card-subtitle col-4 border p-5 rounded-circle d-sm-none d-md-flex"></div>
<div class="box card-subtitle col-4 border p-5 rounded-circle d-sm-none d-md-flex"></div>
<div class="w-100"></div>
<div class="box card-subtitle col-4 border p-5 rounded-circle d-sm-none d-md-flex"></div>
<div class="box card-subtitle col-4 border p-5 rounded-circle d-sm-none d-md-flex"></div>
<div class="box card-subtitle col-4 border p-5 rounded-circle d-sm-none d-md-flex"></div>
<div class="w-100"></div>
<div class="box card-subtitle col-4 border p-5 rounded-circle d-sm-none d-md-flex"></div>
<div class="box card-subtitle col-4 border p-5 rounded-circle d-sm-none d-md-flex"></div>
<div class="box card-subtitle col-4 border p-5 rounded-circle d-sm-none d-md-flex"></div>
</section>
</section>
<!-- script-->
<script src="js/3-JSPractice.js"></script>
<script>
"use strict";
//https://www.w3schools.com/jsref/jsref_obj_array.asp
</script>
</body>
</html>