-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSessionStorage.html
More file actions
38 lines (33 loc) · 1.52 KB
/
Copy pathSessionStorage.html
File metadata and controls
38 lines (33 loc) · 1.52 KB
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
<!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">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>Session Storage</title>
</head>
<body>
<div class="container">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text" id="">Anahtar ve Değer</span>
</div>
<input type="text" id = "addkey" class="form-control">
<input type="text" id = "addvalue" class="form-control">
</div>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text" id="">Anahtar</span>
</div>
<input type="text" id = "deletekey" class="form-control">
</div>
<hr>
<button class = "btn btn-danger" id = "add">Ekle</button>
<button class = "btn btn-danger" id = "delete">Sil</button>
<button class = "btn btn-danger" id = "clear">Hepsini Sil</button>
</div>
<script src="./Javascript/SessionStorage.js"></script>
</body>
</html>