-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstartup.html
More file actions
70 lines (56 loc) · 2.09 KB
/
startup.html
File metadata and controls
70 lines (56 loc) · 2.09 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Startup</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<base target="_parent" /> <!-- this allows links to open outside of iFrames -->
<style>
body {
padding: 0;
margin: 0;
background-color: rgb(240, 240, 240);
}
input {
font-size:16px;
height: 50px;
width: calc(100% - 40px);
padding: 12px 20px;
margin: 20px 20px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.buttons {
display: flex;
align-items: center;
justify-content: center;
}
.button {
height: 50px;
width: 100px;
border: none;
border-radius: 4px;
cursor: pointer;
color: white;
padding: 15px 15px;
text-align: center;
font-size: 16px;
margin-left: 5px;
margin-right: 5px;
}
.button:hover { opacity: 0.7; }
</style>
</head>
<body>
<form name="f" id="searchbar" method="get" action="https://duckduckgo.com/" autocomplete="off"> <!-- Wrapping this in a form lets you hit enter to submit -->
<input name="q" type="text" value="" placeholder="Search the internet...">
</form>
<div class="buttons">
<a tabindex="-1" href="https://github.com/x753/"><button class="button" style="background-color: #28a745;">GitHub</button></a>
<a tabindex="-1" href="https://www.patreon.com/x753"><button class="button" style="background-color: #F96854;">Patreon</button></a>
<a tabindex="-1" href="https://discord.gg/fGSneSe"><button class="button" style="background-color: #7289DA;">Discord</button></a>
<a tabindex="-1" href="https://twitter.com/753network"><button class="button" style="background-color: #55ADEE;">Twitter</button></a>
</div>
</body>
</html>