-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojec1.html
67 lines (67 loc) · 2.94 KB
/
projec1.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
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>Barebones Portfolio</title>
</head>
<body>
<header>
<h1>Barebones Portfolio</h1>
<link rel="stylesheet" href="projec1.css">
</header>
<form class="details-input">
<label for="fname"> First Name:</label>
<input type="text" id="fname" placeholder="first_name" name="first_name" required><br><br>
<label for="lname"> Last Name:</label>
<input type="text" id="lname" placeholder="last_name" required><br><br>
<label for="password">Password:</label>
<input type="password" id="password" placeholder="password" name="last_name" required><br><br>
<label for="email"> E-mail:</label>
<input type="email" id="email" placeholder="email" name="email" required><br><br>
<label for="number">Contact Number:</label>
<input type="number" id="number" name="number" ><br>
<p>Select Gender</p>
<label for="MALE">MALE</label>
<input type="radio" id="MALE" name="gender" value="male">
<label for="FEMALE">FEMALE</label>
<input type="radio" id="FEMALE" name="gender" value="female"><br><br>
<label for="agree">I agree to everything</label>
<input type="checkbox" name="checked" id="agree"><br><br>
<button class="button1">SUBMIT</button><br>
</form>
<h2>TABLE</h2>
<table class="table-c" style="width:30%">
<tr>
<th class="heading">Qualification</th>
<th class="heading">Skills</th>
<th class="heading">Salary</th>
</tr>
<tr>
<td class="row">B.Tech</td>
<td class="row">C++</td>
<td class="row">5,00,000</td>
</tr>
<tr>
<td class="row">MBA</td>
<td class="row">Organisation skills</td>
<td class="row">7,00,000</td>
</tr>
<tr>
<td class="row">Bsc</td>
<td class="row">Speaker</td>
<td class="row">4,00,000</td>
</tr>
<tr>
<td class="row">Medical</td>
<td class="row">Nursing</td>
<td class="row">7,00,000</td>
</tr>
</table>
<h2 >VIDEO</h2>
<iframe class="video" width="700" height="394" src="https://www.youtube.com/embed/L2dguyFo82w" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<h2>IMAGE</h2>
<img class="image1" width="300" height="300" src="https://m.economictimes.com/thumb/msid-60916834,width-1200,height-900,resizemode-4,imgsize-170135/jobs/five-ways-to-build-a-rewarding-career.jpg">
<footer>
This is a footer
</footer>
</body>
</html>