-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (41 loc) · 1.61 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
<!doctype html>
<html lang="en">
<head>
<title>JS Element Changer</title>
<!-- 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="assets/css/bootstrap.min.css">
<!-- Font-Awesome CSS -->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!-- Main CSS -->
<link rel='stylesheet' type='text/css' media='all' href='assets/css/style.css'/>
<!-- responsive css -->
<link rel='stylesheet' type='text/css' media='all' href='assets/css/responsive.css'/>
<!-- Place favicon in the root directory -->
<link rel="icon" type="image/png" href="assets/img/favicon.jpg">
</head>
<body>
<div class="container ">
<div class="row">
<div class="col-xs-6 m-auto">
<h3 class="section-heading">
JS Element Changer
</h3>
<button type="button" class="btn btn-primary" id="redBtn">Red</button>
<button type="button" class="btn btn-secondary" id="greenBtn">Green</button>
<button type="button" class="btn btn-success" id="blueBtn">Blue</button>
<button type="button" class="btn btn-danger" id="defaultBtn">Default</button>
<div class="style" id="mystyle"></div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="assets/js/jquery-3.2.1.min.js"></script>
<script src="assets/js/popper.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>