html
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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<form>
<fieldset>
<legend>
entry foarm
</legend>
<p>enter your name:</p>
<input type="text" placeholder="name">
<br>
<p>enter your email:</p>
<input type="email" placeholder="Email">
<br>
<p>your email password:</p>
<input type="password"placeholder="password">
<p>enter your phone number:</p>
<input type="tel" placeholder="phone number" >
<br>
<p>your address:</p>
<input type="text" placeholder="your address">
<br> <br ><button >Submit </button ></fieldset>
</form>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
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
body {
text-transform:uppercase;
border-radius:9px;
}
fieldset{
border:9px;
border-style:double;
Background-color: #e67e7e;
border-radius:20px;
font-weight:bold;
}
legend{
border-style:;
Background-color: #992f47;
border-radius:5px;
width:120px;
height:22px;
}
input{
border-style:dashed;
border-color: black;
border-radius:20px;
}
button{
font-variant:;
font-weight:bold;
height:30px;
width:70px;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run