-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·70 lines (70 loc) · 2.32 KB
/
index.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
68
69
70
<!DOCTYPE html>
<html lang="ta">
<head>
<title>Hello web!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form>
<input type="text" placeholder="function name" name="fullName">
<input type="password" placeholder="password" name="password">
<input type="submit" value="Submit">
<br>
favorite functionality
<input type="radio" name="keda vettu" value="kedavettu">
<input type="radio" name="kalyanam" value="kalynam">
<br>
<input name="function" list="functions" placeholder="function">
<datalist id="functions">
<option value="Kalyanam">
<option value="Keda vettu">
<option value="pongal">
</datalist>
</form>
<table>
<thead>
<th>
function name
</th>
<th>
function place
</th>
<th>
approximate crowd
</th>
<tr>
<td>
Kalyanam
</td>
<td>
Mandabam ila kovil
</td>
<td>
1000
</td>
</tr>
<tr>
<td>
keda vettu
</td>
<td>
kula dheivam kovil
</td>
<td>
500 maximum
</td>
</tr>
</thead>
</table>
ordered list
<ul> Unordered list
<li>HMTL</li>
<li>CSS</li>
<li>JavaScript</li>
<li>SQL server</li>
</ul>
<img src="C:\Users\madhu\Pictures\WhatsApp Image 2022-01-31 at 20.04.17.jpeg" alt="picture taken during pongal" width="700" height="500">
<br>
<a href="https://drive.google.com/drive/folders/147e8oQYqIZdLXmEUI1Byu_nG-S2a6Ldt">link to images taken during marriage</a>
</body>
</html>