-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavascript.html
More file actions
39 lines (27 loc) · 1.01 KB
/
Javascript.html
File metadata and controls
39 lines (27 loc) · 1.01 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
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TodoList</title>
<link rel="stylesheet" href="JavascriptDeneme.css"> <!--css sayfası eklendi-->
</head>
<body>
<div class="container">
<h2 class="baslik">TODO LİST SAYFASI</h2>
<form action="" style="display: inline;" id="form1">
<input class="input" type="text" placeholder="Todo Giriniz">
<input class="button" type="button" value="Todo Ekleyin">
</form>
<br>
<hr>
<h3>Todo Listesi</h3>
<form action="" id="form2">
<input class="input" type="text" placeholder="Todo Arayınız">
<input class="button" type="button" value="Tüm Todoları Temizle" >
</form>
<br><hr>
</div>
<script src="app.js"></script> <!--javascript sayfası eklendi-->
</body>
</html>