-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclipboard.html
25 lines (24 loc) · 1.02 KB
/
clipboard.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
<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">
<link rel="stylesheet" href="css/clipboard.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<title>Clipboard for Vote the Internet</title>
</head>
<body>
<div id="container">
<h1>
Clipboard
<i class="fa fa-plus control"></i>
<i id="sudo" class="fa fa-trash control"></i>
</h1>
<input type="text" required='true' placeholder="paste new item . . .">
<ul>
</ul>
</div>
<script src="scripts/clipboard.js"></script>
</body>
</html>