-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (73 loc) · 1.78 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<html>
<head>
<link rel="stylesheet" href="main.css">
<script src="main.js"></script>
<style>
table,td,th{
border:solid 1px;}
</style>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<title>
hello world
</title>
<script>
window.alert("hello <3");
window.prompt("Enter something");
prompt
</script>
</head>
<body>
<table>
<tr>
<th>Sl No </th>
<th>Name</th>
</tr>
<tr>
<td>1</td>
<td>Aditya</td>
</tr>
</table>
<div id="Form">
</div>
<form>
first Name <br>
<input type="text" name="First Name" placeholder="First Name"><br>
password<br>
<input type="Password" name="Password" placeholder="Password "><br>
<input type="submit" value="submit" ><br>
<select>
<option
value="MALE">MALE</option><br>
<option
value="FEMALE">FEMALE</option><br>
</select>
<input type="radio" value="Yes"
name="check">yes<br>
<input type="radio" value="Yes"
name="check">No<br>
</form>
<ti>
<bgcolor="silver">
<h1 style=>
This is h1 heading
</h1>
<h6>
hi
</h6>
<!-- This is a link going to google-->
<p>
<b>You are awesome</b>
</p>
<a target="_blank" href="http://www.google.com">Link to google</a><br>
<a target="_blank"href="htttp://www.facebook.com">Link to facebook</a>
<ul>
<li>1st item</li>
<li>2nd item</li>
</ul>
<ol>
<li>1st item</li>
<li>2nd item</li>
</ol>
<img src="1.jpg">
</body>
</html>