forked from AdePhil/StickyLinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (37 loc) · 1.19 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sticky Links</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
</head>
<body>
<header>
<span id = "greeting">Hey there!🎄</span>
<p>paste your links here and copy them back when needed.</p>
</header>
<div class="wrapper">
<div>
<img src="img/stickyimage.png" alt="sticky image">
<h1>STICKY LINKS</h1>
</div>
<p></p>
<ul class="links">
</ul>
<form class="add-items">
<div class="input-group">
<p class="multiple-link-error">This links already exist!</p>
<input type="text" name="linkTxt" placeholder="paste link.." required id="linkTxt">
<div class="error"><i class="fa fa-info-circle"></i>Please enter a correct link</div>
<input type="submit" value="+ Add Link">
</div>
<div>
<input type="button" class="delete-all" value="Delete All">
</div>
</form>
</div>
<script src="js/main.js"></script>
</body>
</html>