-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (33 loc) · 1.18 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
<!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>URL SAVER | Save your site names</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body onload="getValues()">
<h3>Save your URLs for faster access</h3>
<form id="form">
<div class="form-group">
<label for="websiteName">Website Name</label>
<input type="text" class="form-control" id="websiteName" placeholder="Enter site name">
</div>
<div class="form-group">
<label for="websiteURL">Website URL</label>
<input type="text" class="form-control" id="websiteURL" placeholder="Enter site URL">
</div>
<button type="submit" class="btn btn-primary" id="submit">Create</button>
</form>
<div id="results">
</div>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script src="js/main.js">
</script>
</body>
</html>