-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfontbucket.html
47 lines (41 loc) · 1.81 KB
/
fontbucket.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Font Bucket</title>
<link href="https://fonts.googleapis.com/css?family=Nunito&display=swap" rel="stylesheet">
<link rel="stylesheet" href="fontbucket.css">
</head>
<body>
<div class='heading'>
<img src="icon-128.png" alt="logo" class="icon">
<span class="topic">Font Bucket</span>
</div>
<div class="desc">
Amass your favourite fonts here, then appeal and test it on any website.😄
</div>
<div class="inputs">
<div>
<input type="text" id="fontUrl" class="add-font" placeholder="Add your link here">
<button id="addFontButton" class="add-button">Add</button>
<div style="color:red;text-align:left "> <span id="err"></span></div>
</div>
<br>
<div>
<select name="drop" id="fonts" class="add-font" style="width: 95%;">
<option disabled selected>Select your font</option>
</select>
<div><button id="deletefont" class="add-button" style="background-color:rgb(252,74,74);">Delete</button>
<button style="background-color:rgb(0, 155, 8)" id="applyFontButton" class="add-button">Apply</button></div>
<div style="color:red;text-align:left "> <span id="err2"></span></div>
</div>
<button id="refresh" class="color"><img class="icon" src="https://cdn1.iconfinder.com/data/icons/basic-ui-elements-color-round/3/47-512.png" alt=""></button>
</div>
<div class="dd">
Design and Developed by <br> <a href="http://silive.in/" target="__blank" class="si"><img src="silogo.png" alt=""> Software Incubator</a>
</div>
</body>
<script src="fontbucket.js"></script>
</html>