FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript-DOM-Tutorial/index.html at lesson-2 · Gatodegithub/JavaScript-DOM-Tutorial · GitHub
Gatodegithub
/
JavaScript-DOM-Tutorial
Public
forked from
iamshaunjp/JavaScript-DOM-Tutorial
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript-DOM-Tutorial
/
index.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
48 lines (47 loc) · 1.21 KB
Breadcrumbs
JavaScript-DOM-Tutorial
/
index.html
Copy path
File metadata and controls
48 lines (47 loc) · 1.21 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<!DOCTYPE html
>
<
html
>
<
head
>
<
meta
charset
="
utf-8
"
>
<
link
href
="
styles.css
"
rel
="
stylesheet
"
/>
<
title
>
JavaScript DOM Tutorials
</
title
>
</
head
>
<
body
>
<
div
id
="
wrapper
"
>
<
header
>
<
div
id
="
page-banner
"
>
<
h1
class
="
title
"
>
Bookorama
</
h1
>
<
p
>
Books for Ninjas
</
p
>
<
form
id
="
search-books
"
>
<
input
type
="
text
"
placeholder
="
Search books...
"
/>
</
form
>
</
div
>
</
header
>
<
div
id
="
book-list
"
>
<
h2
class
="
title
"
>
Books to Read
</
h2
>
<
ul
>
<
li
>
<
span
class
="
name
"
>
Name of the Wind
</
span
>
<
span
class
="
delete
"
>
delete
</
span
>
</
li
>
<
li
>
<
span
class
="
name
"
>
The Wise Man's Fear
</
span
>
<
span
class
="
delete
"
>
delete
</
span
>
</
li
>
<
li
>
<
span
class
="
name
"
>
Kafka on the Shore
</
span
>
<
span
class
="
delete
"
>
delete
</
span
>
</
li
>
<
li
>
<
span
class
="
name
"
>
The Master and the Margarita
</
span
>
<
span
class
="
delete
"
>
delete
</
span
>
</
li
>
</
ul
>
</
div
>
<
form
id
="
add-book
"
>
<
input
type
="
text
"
placeholder
="
Add a book...
"
/>
<
button
>
Add
</
button
>
</
form
>
</
div
>
<
script
src
="
app.js
"
>
</
script
>
</
body
>
</
html
>
Back
|
FazBrowse Home
|
New Git URL