-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheducation.html
55 lines (50 loc) · 1.4 KB
/
education.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Education</title>
</head>
<body>
<h2>Education</h2>
<table border="2">
<thead>
<tr>
<th>Institution</th>
<th>Course/study</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.<strong><a href="https://sboacbe.com/">SBOA Matric.hr.sec.school</a></strong></td>
<td>(LKG to std 12)</td>
</tr>
<tr>
<td>2.<strong>NIT Tiruchirapalli</strong></td>
<td> B.Tech EEE
</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
<ul>
<h3>My Address</h3>
<li>no 46 R block</li>
<li>kovaipudur,<a href="https://en.wikipedia.org/wiki/Coimbatore">coimbatore</a></li>
</ul>
<p>to contact me please fill the details here</p>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for=" name">Enter your name:</label>
<input type="text" name="your name" value="">
<input type="color" name="fav colour" value=""><br>
<label for="">Enter the password: </label>
<input type="password" name="password" value="">
<input type="submit" name="" >
</form>
<ol>
<li>first item</li>
<li>second item</li>
<li>third item</li>
</ol>
</body>
</html>