-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (76 loc) · 2.83 KB
/
Copy pathindex.html
File metadata and controls
93 lines (76 loc) · 2.83 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- BOOTSTRAP CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<title>Git Commands</title>
<style>
.btn {
color: black;
font-weight: bold;
font-size: larger;
}
body {
background: linear-gradient(-45deg, #3f51b1 0%, #5a55ae 13%, #7b5fac 25%, #8f6aae 38%, #a86aa4 50%, #cc6b8e 62%,
#f18271 75%, #f3a469 87%, #f7c978 100%);
background-size: 400% 400%;
animation: gradient 20s ease infinite;
height: 100vh;
display: grid;
justify-content: center;
align-items: center;
}
.dropShadow {
-webkit-filter: drop-shadow(5px 5px 5px #666666);
filter: drop-shadow(5px 5px 5px #666666);
margin-bottom: 25;
}
@keyframes gradient {
0% {
background-position: 0%;
}
50% {
background-position: 100%;
}
100% {
background-position: 0%;
}
}
</style>
</head>
<body>
<!-- <div>
<img src="./git.png" width="480" height="280" />
</div> -->
<div class="container" style="align-items: center; align-content: center; text-align: center;">
<img src="./Git-Github-Essentials.jpg" width="350" class="dropShadow" />
<div style="margin-bottom: 10;">
<button type="button" class="btn btn-warning btn-lg"
onclick="document.location='git_bash_commands.html.html'">
Git Bash Commands
</button>
</div>
<div style="margin-bottom: 10;">
<button type="button" class="btn btn-warning btn-lg"
onclick="document.location='git_bash_commands.html.html'">
Git Bash Commands
</button>
</div>
<div style="margin-bottom: 10;">
<button type="button" class="btn btn-warning btn-lg"
onclick="document.location='git_bash_commands.html.html'">
Git Bash Commands
</button>
</div>
<div style="margin-bottom: 10;">
<button type="button" class="btn btn-warning btn-lg"
onclick="document.location='git_bash_commands.html.html'">
Git Bash Commands
</button>
</div>
</div>
</body>
</html>