-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex(input).html
53 lines (47 loc) · 1018 Bytes
/
index(input).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
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<style>
input[type="text"],
input[type="password"] {
width: 100%;
border: 1px solid green;
padding: 10px;
background-color: #3CBC8D;
border-radius: 1px;
color: white;
}
</style>
<style>
input[type="text"]:focus,
input[type="password"]:focus {
background-color: lightblue;
}
.myClass{
color:green;
background-color:red;
}
p.someClass{
color:red;
background-color:black;
}
#ad{
background-color: blueviolet;
}
</style>
</head>
<body>
AD :
<input ıd="ad" type="text">
GMAİL :
<input type="text">
ŞİFRE:
<input type="password">
<input type="submit">
<h1 class="myClass">ALPASLAN YENİTÜRK</h1>
<p class="someClass">BU KISIM PARAĞRAFTIR </p>
</body>
</html>