FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
javascript-templating/index.html at master · DevTips/javascript-templating · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
DevTips
/
javascript-templating
Public
Notifications
You must be signed in to change notification settings
Fork
5
Star
11
Code
Issues
0
Pull requests
1
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
javascript-templating
/
index.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
74 lines (57 loc) · 1.68 KB
Breadcrumbs
javascript-templating
/
index.html
Copy path
File metadata and controls
executable file
·
74 lines (57 loc) · 1.68 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
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
<!DOCTYPE html
>
<
html
>
<
head
>
<
meta
charset
="
utf-8
"
>
<
title
>
World Cup Top Goalscorers
</
title
>
<
link
rel
="
stylesheet
"
href
="
css/animate.css
"
>
<
link
rel
="
stylesheet
"
href
="
css/card.css
"
>
</
head
>
<
body
>
<
h3
>
World Cup Top Goalscorers
</
h3
>
<
table
class
="
world-cup
"
>
<
thead
>
<
tr
>
<
td
>
Name
</
td
>
<
td
class
="
goals
"
>
Goals
</
td
>
</
tr
>
</
thead
>
<
tr
>
<
td
>
<
a
class
="
player-card-ref
"
data-height
="
5'9"
"
data-weight
="
132 lbs.
"
data-place
="
Mogi das Cruzes, Brazil
"
href
="
#
"
>
Neymar
</
a
>
<
span
>
(Brazil)
</
span
>
</
td
>
<
td
class
="
goals
"
>
4
</
td
>
</
tr
>
<
tr
>
<
td
>
<
a
href
="
#
"
class
="
player-card-ref
"
data-height
="
5'9"
"
data-weight
="
132 lbs.
"
data-place
="
Mogi das Cruzes, Brazil
"
>
Karim Benzema
</
a
>
<
span
>
(France)
</
span
>
</
td
>
<
td
class
="
goals
"
>
3
</
td
>
</
tr
>
<
tr
>
<
td
>
<
a
href
="
#
"
class
="
player-card-ref
"
data-height
="
5'9"
"
data-weight
="
132 lbs.
"
data-place
="
Mogi das Cruzes, Brazil
"
>
Thomas Muller
</
a
>
<
span
>
(Germany)
</
span
>
</
td
>
<
td
class
="
goals
"
>
3
</
td
>
</
tr
>
<
tr
>
<
td
>
<
a
href
="
#
"
class
="
player-card-ref
"
data-height
="
5'9"
"
data-weight
="
132 lbs.
"
data-place
="
Mogi das Cruzes, Brazil
"
>
Arjen Robben
</
a
>
<
span
>
(Netherlands)
</
span
>
</
td
>
<
td
class
="
goals
"
>
3
</
td
>
</
tr
>
<
tr
>
<
td
>
<
a
href
="
#
"
class
="
player-card-ref
"
data-height
="
5'9"
"
data-weight
="
132 lbs.
"
data-place
="
Mogi das Cruzes, Brazil
"
>
Enner Valencia
</
a
>
<
span
>
(Ecuador)
</
span
>
</
td
>
<
td
class
="
goals
"
>
3
</
td
>
</
tr
>
</
table
>
<
script
src
="
http://code.jquery.com/jquery-1.7.2.min.js
"
>
</
script
>
<
script
src
="
js/app.js
"
>
</
script
>
</
body
>
</
html
>
Back
|
FazBrowse Home
|
New Git URL