-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (38 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Chrome console API</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M"
crossorigin="anonymous">
<style>
body {
text-align: center;
}
button {
cursor: pointer;
}
button>a {
float: right;
}
button:hover>a,
button>a:hover {
color: white;
text-decoration: none;
}
</style>
</head>
<body>
<h2> <a href='https://developers.google.com/web/tools/chrome-devtools/console/console-reference' target='_blank'>Console API chrome</a></h2>
<p>
Click on button and see an example in your console <br/>
Click on 🛈 inside the button to go to documentations. <br/>
Note that the list is generated from the keys of the <tt>console</tt> object
</p>
<br/>
<div id="container" class="btn-group-vertical"></div>
<script src="script.js"></script>
</body>
</html>