-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (61 loc) · 1.71 KB
/
index.html
File metadata and controls
69 lines (61 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<!-- --------------------------------------------------------------------
File : Index.html
Purpose : Initial driving for accessing code samples.
Author : Komal Karir
Date : July 2024
------------------------------------------------------------------------ -->
<head>
<meta charset="UTF-8" />
<meta name="author" content="Komal Karir" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="web development code" />
<meta name="keywords" content="HTML, HTML5,CSS, CSS3, JavaScript" />
<link rel="stylesheet" href="Examples/assets/css/style.css" />
<link
rel="icon"
type="image/x-icon"
href="Examples/assets/images/letterK.ico"
/>
<title>Code4All</title>
</head>
<body>
<!-- insert standard header -->
<embed
type="text/html"
src="Examples/assets/embedCode/stdHeader.html"
width="100%"
/>
<main>
<h2>Welcome to the "How-To" Page!</h2>
<p>
This page lets you see all code examples in all their full Technicolour
glory!
</p>
<p>
If you like what you see, feel free to go to my
<a
href="https://github.com/Komals-Code4All/Webdev-HowTo"
target="_blank"
><strong>GitHub</strong></a
>
and take a look at the code.
</p>
<br />
<!-- Table of examples goes here, built in JavaScript -->
<div id="codeExamples"></div>
<p>
. . . and if you have any suggestions for more examples, please let me
know.
</p>
</main>
<!-- insert standard footer -->
<embed
type="text/html"
src="Examples/assets/embedCode/stdFooter.html"
width="100%"
/>
<script src="Examples/assets/javascript/buildTable.js"></script>
</body>
</html>