-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (96 loc) · 3.14 KB
/
index.html
File metadata and controls
132 lines (96 loc) · 3.14 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
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
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>Upload image to https://telegra.ph/</title>
<style>
h1{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 40px;
}
.label{
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
label{
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
p{
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.texts{
height: 40.5px;
width: 24%;
}
.textss{
width: 30%;
height: 50px;
}
.submit{
background-color: brown;
border: o;
border-radius: 5px;
color: white;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 15px;
padding: 4px 5px;
}
@media screen and (max-width: 800px) {
.texts{
width: 50%;
}
.textss{
width: 60%;
}
}
@media screen and (max-width: 600px) {
.texts{
width: 50%;
}
.textss{
width: 60%;
}
}
@media screen and (max-width: 400px) {
.texts{
width: 50%;
}
.textss{
width: 60%;
}
}
</style>
</head>
<body>
<h1>Upload image to https://telegra.ph/</h1>
<hr/>
<div class="container" style="text-align: center ;">
<form method="post" action="https://telegra.ph/upload" enctype="multipart/form-data" target="_blank">
<label class="label" for="select-file">Select Image( < 5MB ):</label>
<input id="select-file" name="file0" type="file" value="Pilih File">
<input class="submit" value="click to upload" type="submit">
</form>
</div>
<hr/>
<div>
<br>
<label>Example of the result of the image being imported is the URL:
<br><br>
<input class="texts" type="text" style="background-color: rgb(255, 255, 255); font-size: 20px;" value=" [{:\/file\/7e906fce5a94c5771200a.png}]" disabled>
<br>
<br>
code yang harus diambil = 7e906fce5a94c5771200a.png
</label>
<br>
<br><hr>
<p>Ambil kode nya lalu paste kebawah ini supaya melengkapi :</p>
<input type="text" class="textss" style=" font-size: 18px;" value="https://telegra.ph/file/">
<br>
<br>
<p>By TegarPriyadi</p>
<img src="https://telegra.ph/file/ed8f99577c0546c85478e.gif" width=100%>
</div>
</body>
</html>