-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (20 loc) · 854 Bytes
/
index.html
File metadata and controls
21 lines (20 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bookmark manager</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="container">
<h2>BOOKMARK MANAGER</h2>
<input type="text" name="youtube" id="website" placeholder="name of website" class="form">
<input type="url" placeholder="youtube.com" id="url" class="form">
<button type="button" class="btn btn-primary" id="bookmark">Bookmark</button>
</div>
<!-- <a href=""></a> -->
<script src="script.js"></script>
</body>
</html>