-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathalex.html
63 lines (63 loc) · 1.07 KB
/
alex.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
54
55
56
57
58
59
60
61
62
63
<html>
<head>
<title>bojo galak</title>
<style ="text/css">
fieldset{
width:200;
height:300;
box-shadow:5px 5px 5px 5px;
background-color:#003721;
margin-left:200;
margin-top:100;
}
legend{
background-color:#1afa72;
color:#ff0000;
}
input[type="text"]{
width:150;
height:30;
border-color:#16251;
color:#182512;
}
input[type="password"]{
width:150;
height:30;
border-color:#16251;
color:#182512;
}
input[type="submit"]{
width:150;
height:30;
border-color:#16251;
background-color:#182512;
color:#00ff00;
}
textarea{
width:200;
height:100;
}
</style>
</head>
<body>
<form>
<fieldset>
<legend>
markasuhuy
</legend>
<font color="#00ff00">NAMA :</font><br>
<input type="text" name="nama" id="nama" placeholder="isun lan riko">
<br>
<font color="#00ff00">PASSWORD :</font><br>
<input type="password" name="nama" id="nama" placeholder="Bojo Galak Tinggal Wae">
<br>
<font color="#00ff00">KESAN :</font>
<br>
<textarea placeholder="is good but difficult so 4 mean is tantangan terselesaikan"></textarea>
<br>
<br>
<input type="submit" value="sambat" name="submit">
</fieldset>
</form>
</body>
</html>