-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
33 lines (30 loc) · 1.01 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body{
background-image: url('lab.jpg');
/* background-color:rgb(124, 194, 191); */
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}</style>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test</title>
</head>
<body><font size="5px" family="comic sans MS" color="">
<center> <h1>Test Form</h1></center>
<font size="10px">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br><br>
<label for="age">Age:</label>
<input type="number" id="age" name="age" required><br><br>
<label for="image">Image:</label>
<input type="file" id="image" name="image" accept="image/*" required><br><br>
<input type="submit" value="Submit">
</form>
</font>
</body>
</html>