-
Notifications
You must be signed in to change notification settings - Fork 1
/
delete.html
100 lines (73 loc) · 2.33 KB
/
delete.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZC1W16E8NY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZC1W16E8NY');
</script>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clipboard</title>
<!-- favicon -->
<link
type="image/png"
rel="icon"
href="assets/favicon.png"
/>
<!-- <link
type="image/png"
rel="icon"
href="https://img.icons8.com/external-flaticons-lineal-color-flat-icons/64/null/external-clipboard-office-and-office-supplies-flaticons-lineal-color-flat-icons.png"
/> -->
<!-- bootstrap css -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<!-- bootstrap js -->
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<!-- link styles.css -->
<link rel="stylesheet" href="assets/styles.css" />
</head>
<body>
<!-- logo -->
<div class="logo" >
<img
src="assets/logo.png" width="500px"
/>
</div>
<!-- Input Form-->
<div class="form-container">
<form id="form-add">
<input type="number" name="text" id="number" min="0" autocomplete="off"/>
<input type="submit" value="Delete" id="submit" />
</form>
</div>
<div class="existing-clipboards">
<div class="github">
<a href="https://github.com/aviiciii">
<img src="assets/github.png"/>
</a>
</div>
<ul class="list-group">
<li class="list-group-item d-flex justify-content-between align-items-center" id="loading">
Hola !
<!-- <button class="badge rounded-pill copy-to-clipboard-button"><img class="copy-to-clipboard-img" src="https://img.icons8.com/fluency-systems-regular/96/null/clipboard.png" /></button> -->
</li>
</ul>
</div>
<!-- javascript -->
<script src="assets/script-delete.js"></script>
</body>
</html>