-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
153 lines (141 loc) · 8.24 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!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 name="description" content="This page contains the essentials for a modern HTML5 web page">
<meta name="author" content="kaizen-soze">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>My Bootstrap Website</title>
</head>
<body>
<div class="container">
<h1>HTML5 Template</h1>
<hr>
<div class="accordion" id="accordionExample">
<div class="card">
<div class="card-header" id="headingOne">
<h2 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
HTML Tags
</button>
</h2>
</div>
<div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body">
<ul>
<li><a href="a.html"><a> element</a></li>
<li><a href="br.html"><br /> element</a></li>
<li><a href="comments.html">HTML Comments</a></li>
<li><a href="h.html">Header elements</a></li>
<li><a href="hr.html"><hr > element</a></li>
<li><a href="img.html"><img /> element</a></li>
<li><a href="ol.html"><ol > element</a></li>
<li><a href="p.html"><p > element</a></li>
<li><a href="spandiv.html"><span > & <div > elements</a></li>
<li><a href="tables.html"><table > element</a></li>
<li><a href="ul.html"><ul > element</a></li>
</ul>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h2 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
CSS
</button>
</h2>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body">
<p class="lead">Selectors</p>
<ul>
<!-- Notice that the links below all have "cssExamples" in their address. This is because
the css files live in a folder called "cssExamples". A link simply points to a real
location, so since those html files live in a folder, we need to include that folder when
we're referring to it.
This is called a relative link because we don't specify a domain name. -->
<li><a href="cssExamples/html_selectors.html">HTML Selectors</a></li>
<li><a href="cssExamples/class_selectors.html">Class Selectors</a></li>
<li><a href="cssExamples/id_selectors.html">ID Selectors</a></li>
</ul>
<p class="lead">Different Types of Stylesheets</p>
<p>Remember that this is the order in which stylesheets are interpreted and applied!</p>
<ol>
<li><a href="cssExamples/external-css.html">External Stylesheet</a></li>
<li><a href="cssExamples/margin.html">Internal Stylesheet</a></li>
<li><a href="cssExamples/inline-css.html">Inline Styles</a></li>
</ol>
<p class="lead">Properties</p>
<ul>
<li><a href="cssExamples/margin.html">margin</a></li>
<li><a href="cssExamples/padding.html">padding</a></li>
<li><a href="cssExamples/font-weight.html">font-weight</a></li>
<li><a href="cssExamples/font-size.html">font-size</a></li>
<li><a href="cssExamples/font-family.html">font-family</a></li>
<li><a href="cssExamples/color.html">color</a></li>
<li><a href="cssExamples/background-color.html">background-color</a></li>
<li><a href="cssExamples/width.html">width</a></li>
<li><a href="cssExamples/height.html">height</a></li>
</ul>
<p><a href="cssExamples/css-layout.html">CSS Layout Challenge</a></p>
<p class="lead">CSS Grid</p>
<ul>
<li><a href="cssExamples/css-grid.html">CSS Grid</a></li>
<li><a href="cssExamples/css-grid-semantic.html">CSS Grid with Semantic tags</a></li>
<li><a href="cssExamples/css-grid-semantic2.html">CSS Grid using Grid Area</a></li>
</ul>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h2 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Javascript
</button>
</h2>
</div>
<div id="collapseThree" class="collapse show" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body">
<p class="lead">Javascript Demos</p>
<ul>
<li><a href="javascript/object.html">Intro to objects</a></li>
<li><a href="javascript/querySelector.html">querySelector & querySelectorAll</a></li>
<li><a href="javascript/getElementByID.html">getElementById</a></li>
<li><a href="javascript/getElementByTagName.html">getElementByTagName</a></li>
<li><a href="javascript/getElementByClassName.html">getElementByClassName</a></li>
<li><a href="javascript/eventListener.html">Event Listeners</a></li>
<li><a href="javascript/basicForm.html">Basic Form Example</a></li>
<li><a href="javascript/session.html">Session Storage Example</a></li>
<li><a href="javascript/localStorage.html">Local Storage Example</a></li>
</ul>
<p class="lead">In-Class Exercises</p>
<ul>
<li><a href="classExercises/string_methods.html">String Methods</a></li>
<li><a href="classExercises/number_array_methods.html">Number/Array Methods</a></li>
<li><a href="classExercises/counter.html">Counter, Part 1</a></li>
<li><a href="classExercises/counter2.html">Counter, Part 2</a></li>
</ul>
<p class="lead">Homework</p>
<ul>
<li><a href="classExercises/calculator.html">Calculator</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<script>
console.log('Javascript is working!')
</script>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>