-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeBlocks.html
More file actions
56 lines (48 loc) · 1.51 KB
/
CodeBlocks.html
File metadata and controls
56 lines (48 loc) · 1.51 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie-edge">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<title>Code Blocks !</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-12">
<hr>
<h1 class="text-center">Code Blocks Online</h1>
<hr>
<h2>How to display opening and closing HTML tags</h2>
<p>Less than its printed with "<" : < ©</p>
<pre><</pre>
<p>Greater than its printed with "& + gt;" : ></p>
<hr>
<h2>How to display code Online</h2>
<p>How to display code with the <code> tag : <code><Example></Example></code></p>
<hr>
<h2 >How to show code Awesomely</h2>
<p >
<pre>
<code>
<h5> <h5>Lorem ipsum dolor sit amet, consectetur adipisicing.</h5></h5>
</code>
</pre>
</p>
<hr>
<h2>How to Display Shurtcuts</h2>
<p>To copy press <kbd>Ctrl + C</kbd> </p>
<p>To paste press <kbd>Ctrl + V</kbd> </p>
</div>
</div>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
</script>
</body>
</html>