FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript-Projects/index.html at master · imrishit98/JavaScript-Projects · GitHub
imrishit98
/
JavaScript-Projects
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript-Projects
/
index.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
92 lines (82 loc) · 3.06 KB
Breadcrumbs
JavaScript-Projects
/
index.html
Copy path
File metadata and controls
92 lines (82 loc) · 3.06 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!--
Author: Rishit Patel
Date: 16 Nov, 2019
Description: Index file for JavaScript Projects for github
-->
<!DOCTYPE html
>
<
html
lang
="
en
"
>
<
head
>
<
meta
charset
="
UTF-8
"
>
<
meta
name
="
viewport
"
content
="
width=device-width, initial-scale=1.0
"
>
<
meta
http-equiv
="
X-UA-Compatible
"
content
="
ie=edge
"
>
<
script
src
="
https://kit.fontawesome.com/336de93654.js
"
>
</
script
>
<
title
>
Rishit Patel JavaScript Project
</
title
>
<
style
>
body
{
font-family
:
sans-serif;
color
:
white;
background
:
rgb
(
131
,
58
,
180
);
background
:
linear-gradient
(
90
deg
,
rgba
(
131
,
58
,
180
,
1
)
22
%
,
rgba
(
94
,
69
,
224
,
1
)
100
%
);
}
a
{
color
:
white;
}
.
myBtn
{
background-color
:
white;
border
:
none;
color
:
black;
padding
:
15
px
32
px
;
text-align
:
center;
text-decoration
:
none;
display
:
inline-block;
font-size
:
16
px
;
margin
:
4
px
2
px
;
cursor
:
pointer;
border-radius
:
3
px
;
visibility
:
visible;
animation-duration
:
0.5
s
;
animation-name
:
glowUp;
width
:
100
%
;
}
.
myBtn
:
hover
{
box-shadow
:
0
14
px
28
px
rgba
(
0
,
0
,
0
,
0.25
)
,
0
10
px
10
px
rgba
(
0
,
0
,
0
,
0.22
);
}
.
mainBody
{
position
:
absolute;
top
:
50
%
;
left
:
50
%
;
transform
:
translate
(
-50
%
,
-50
%
);
text-align
:
center;
}
@keyframes
glowUp {
0
%
{
-webkit-transform
:
translate3d
(
0
,
100
%
,
0
);
transform
:
translate3d
(
0
,
100
%
,
0
);
visibility
:
visible;
}
100
%
{
-webkit-transform
:
translate3d
(
0
,
0
,
0
);
transform
:
translate3d
(
0
,
0
,
0
);
}
}
</
style
>
</
head
>
<
body
>
<
div
class
="
mainBody
"
>
<
h1
>
Projects:
</
h1
>
<
input
type
="
button
"
class
="
myBtn
"
value
="
Hi-Lo game
"
onclick
="
window.open('Hi-Lo Game/','_blank')
"
>
<
br
>
<
input
type
="
button
"
class
="
myBtn
"
value
="
Canadorio Pizza website
"
onclick
="
window.open('Canadorio-Pizza-Website/','_blank')
"
>
<
br
>
<
input
type
="
button
"
class
="
myBtn
"
value
="
Simple math program
"
onclick
="
window.open('Simple Math Program/','_blank')
"
>
<
br
>
<
input
type
="
button
"
class
="
myBtn
"
value
="
Simple snake game
"
onclick
="
window.open('Simple JavaScipt Snake game/','_blank')
"
>
<
br
>
<
input
type
="
button
"
class
="
myBtn
"
value
="
Escape the Spade Game
"
onclick
="
window.open('Escape the spade/','_blank')
"
>
<
br
>
<
br
>
<
a
href
="
https://github.com/imrishit98/
"
target
="
_blank
"
rel
="
noopener noreferrer
"
>
<
i
class
="
fab fa-github
"
style
="
font-size: 41px;
"
>
</
i
>
</
a
>
<
br
>
<
br
>
<
b
>
Made with ❤️ by
<
a
href
="
https://rishitpatel.com
"
target
="
_blank
"
rel
="
noopener noreferrer
"
>
Rishit
Patel
</
a
>
</
b
>
</
div
>
</
body
>
</
html
>
Back
|
FazBrowse Home
|
New Git URL