forked from 123charu/Scripting-Languages-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScripting.txt
More file actions
56 lines (45 loc) · 1.11 KB
/
Scripting.txt
File metadata and controls
56 lines (45 loc) · 1.11 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Q1 Create a student registration form with username,password,DOB,email.
<Html>
<head>
<title>
Registration Form
</title>
</head>
<body bgcolor="Lightskyblue">
<br>
<form>
<label> Username </label>
<input type="text" name="firstname" size="15"/> <br>
Password:
<input type="Password" id="pass" name="pass"> <br>
<br>
Re-type password:
<input type="Password" id="repass" name="repass"> <br>
<input type="button" value="Submit"/>
Email:
<input type="email" id="email" name="email"/> <br>
<br>
<label> DOB </label>
<input type="date" id="Date of Birth" name="DOB">
</form>
</body>
</html>
Q2 Expalin the use of external CSS
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="neerajstyle.css">
</head>
<body>
<h1>Graphic Era Hill University</h1>
<p>School Of Computing</p>
</body>
</html>
"neerajstyle.css"
body {
background-color: blue;
}
h1 {
color: green;
margin-left: 20px;
}