-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurl.html
176 lines (176 loc) · 4.31 KB
/
url.html
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>url shortner</title>
<style>
body {
padding:0px;
}
.cb {
width:30px;
height:30px;
display: inline-block;
padding-left:100px;
}
.heading {
display: inline-block;
text-align: center;
color: darkblue;
font-family: Aharoni;
font-size: 20px;
padding-right: 100px;
}
.content {
background-image: url("bg.jpg");
background-repeat: no-repeat;
background-size: 1400px 650px;
background-attachment: fixed;
margin:0px;
}
.url {
color: white;
text-align: center;
font-size: 55px;
font-family: Candara;
}
.value {
margin-left: 350px;
margin-bottom: 2px;
height: 30px;
width: 600px;
}
@media (max-width: 1200px) {
.value {
margin-left: 400px;
margin-bottom: 2px;
height: 30px;
width: 300px;
}
}
@media (max-width: 1000px) {
.value {
margin-left: 300px;
margin-bottom: 2px;
height: 30px;
width: 300px;
}
}
@media (max-width: 900px) {
.value {
margin-left: 300px;
margin-bottom: 2px;
height: 30px;
width: 300px;
}
}
@media (max-width: 700px) {
.value {
margin-left: 100px;
margin-bottom: 2px;
height: 30px;
width: 300px;
}
}
@media (max-width: 600px) {
.value {
margin-left: 100px;
margin-bottom: 2px;
height: 30px;
width: 300px;
}
}
@media (max-width: 500px) {
.value {
margin-left: 100px;
margin-bottom: 2px;
height: 30px;
width: 200px;
}
}
@media (max-width: 400px) {
.value {
margin-left: 80px;
margin-bottom: 2px;
height: 30px;
width: 200px;
}
}
@media (max-width: 300px) {
.value {
margin-left: 30px;
margin-bottom: 2px;
height: 30px;
width: 200px;
}
}
@media (max-width: 200px) {
.value {
margin-left: 20px;
margin-bottom: 2px;
height: 30px;
width: 200px;
}
}
.btn {
margin-left: 600px;
height: 30px;
width: 100px;
border-radius: 5px;
color: white;
background-color: firebrick;
border:none;
}
h3 {
color: white;
text-align: center;
font-size: 30px;
font-family: "Candara";
}
.link {
color: white;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
text-align: center;
font-size: 30px;
font-family: "Candara";
}
</style>
</head>
<body>
<div class="container-fluid">
<div>
<img class="col cb" src="cb.jpg" alt="codingblocks">
<p class="col heading">Coding Blocks</p>
</div>
<div class="col content">
<br>
<p class="col url">URL SHORTENER</p>
<h3 class="col link">The link never expires!</h3>
<br>
<div class="col input">
<input class="value" type="text" placeholder="URL">
<br>
<input class="value" type="text" placeholder="Custom shortcode (Optional)">
<br>
<input class="value" type="text" placeholder="Secret (Needed to make custom)">
<br>
<br>
<br>
<br>
<input class="col btn" type="button" value="Create URL">
</div>
<br>
<br>
<br>
<br>
</div>
</div>
<br>
<script>
</script>
</body>
</html>