This repository was archived by the owner on Aug 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (121 loc) · 3.55 KB
/
index.html
File metadata and controls
134 lines (121 loc) · 3.55 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Practice jQuery</title>
<link href="http://fonts.googleapis.com/css?family=Satisfy" rel="stylesheet" />
<link rel = "stylesheet" href = "css/styling.css">
<link rel = "stylesheet" href = "css/nav_style.css">
<link rel = "stylesheet" href = "css/nav2_style.css">
<link rel = "stylesheet" href = "css/footer_styling.css">
</head>
<body>
<a href = "mailto:.fatso212@gmail.com">Send a message</a>
<hr>
<time></time>
<nav>
<section>Career Goals</section>
<section>Skills</section>
<section>Work Experience</section>
<section>Education</section>
<section>Achievements</section>
<section>Hobbies & Interests</section>
<section>References</section>
<ul>
<li>About Us</li>
<li>Contact Form</li>
<li>Blog</li>
<li>More Information</li>
</ul>
</nav>
<nav id = "nav2">
<ul>
<li>HTML: Lesson 1
<a href = "index.html#article1"></a>
</li>
<li>HTML: Lesson 2
<a href = "index.html#article2"></a>
</li>
<li>HTML: Lesson 3
<a href = "index.html#article3"></a>
</li>
</ul>
</nav>
<section>
<article id= "article1">
<h1>HTML: Lesson 1</h1>
<p>
There are custom attributes for many different types of<br>
input. They are given various customizations by different<br>
systems, depending on their type.
so <code><input type = "search"></code> is
<input type = "search">
<input type = "number">
<input type = "range">
<input type = "color">
<input type = "input">
Local Storage, Web Workers,<br>
Offline Web Applications, Browser History<br>
Geolocation, MicroData.
Also chech out this <br>
<a href =
"http://learn.shayhowe.com/advanced-html-css/performance-organization/">
<link rel="stylesheet" href="/css/master.css">link
</a> For Advanced CSS/HTML Tutorials By Shay Howe.
Also, the <a href = "https://validator.w3.org/">
W3 HTML Validator</a> may come in handy.<br>
<a href = "https://dash.generalassemb.ly/">Dash</a>
By General Assembly provides an interactive way<br>
to get up to speed with Basic Design.
</p>
</article>
<article id= "article2">
<h1>HTML: Lesson 2</h1>
</article>
<article id= "article3">
<h1>HTML: Lesson 3</h1>
</article>
</section>
<label for = "post_value" id = "post_value_header">Please enter a new comment</label>
<input type = "text" id = "post_value">
<div id = "post">post new Comment</div>
<div id = "all_posts"></div>
<div class = "font">Font</div>
<div class = "text">text</div>
<div class = "text">text</div>
<div class = "text">text</div>
<div class = "text">text</div>
<div class = "photo">Photo</div>
<input type = "checkbox" name = "first_checkbox" checked>
<canvas></canvas>
<video></video>
<audio></audio>
<footer>
<table>
<caption>Table To Represent Company Data</caption>
<thead>
<tr>
<th scope = "col">Our Companies Information</th>
</tr>
</thead>
<tbody>
<tr>
<td>WebDev Co</td>
<td>Brooklyn NY</td>
<td>Waiting To Serve You</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Here ends the Data</td>
</tr>
</tfoot>
</table>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/animations.js"></script>
<script src="js/text_manipulation.js"></script>
<script src="js/style_nav.js"></script>
<script src="js/index.js"></script>
</body>
</html>