-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
52 lines (52 loc) · 1.37 KB
/
Copy pathpopup.html
File metadata and controls
52 lines (52 loc) · 1.37 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
<html>
<style type="text/css">
body {
font-family: Sans-Serif;
min-width: 300px;
max-width: 100%;
position: relative;
vertical-align:middle;
}
th, td {
padding: 15px;
}
h1 {
color: white;
background-color: black;
}
footer {
color: white;
background-color: black;
}
.button {
border-radius: 12px;
background-color: white;
color: black;
shadow: 3px;
}
.button:hover {
outline-color: white;
outline-style: dashed;
outline-weight: 2px;
}
</style>
<body>
<h1>Quick-Github</h2>
<h2>Open Your Github faster!</h2>
<table>
<tr>Github Links</tr>
<tr>
<td><a href="https://github.com">Github</a></td>
<td><a href="https://github.com/login">Github Login</a></td>
<td><a href="https://pages.github.com">Github Pages</a></td>
<td><a href="https://gist.github.com">Github Gist</a></td>
<td><a href="https://developer.github.com">Github Developers</a></td>
<td><a href="https://help.github.com">Github Help</a></td>
</tr>
<table>
<footer><br>
<a href="https://github.com/TheGreatFoxxy/Quick-Github"><button class="button">Contibute on Github! :D</button></a>
<h3>Not accosiated with or licensed by Github. The GITHUB name and OCTOCAT logo is trademarked by Github Inc. US<h3>
</footer>
</body>
</html>