-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (54 loc) · 1.69 KB
/
index.html
File metadata and controls
54 lines (54 loc) · 1.69 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<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>Html5 Basics</title>
<link rel="stylesheet" href="home.css">
<!-- <script>
console.log('Welcome to world of html')
alert("hello")
var output = prompt("are u fine?")
console.log(output)
console.log(confirm("you want to confirm?"))
</script> -->
</head>
<body>
<h1>Welcome to HTML5</h1>
<b>This is using b</b> <br>
<strong>This works like b tag</strong> <br>
<i>This will italicize</i> <br>
<em>This will also italicize</em> <br>
<cite>This will also italicize</cite><br>
<mark>This is very important caluse of our policy</mark> <br>
<code>
var a =10; <br>
console.log(a)
</code><br>
<small>®All the rights reserved to Indiamart © &</small>
<header>This is header</header>
<footer>This is footer</footer> <br>
(A+B)<sup>2</sup> = A<sup>2</sup>+B<sup>2</sup>+2AB <br>
H<sub>2</sub>SO<sub>4</sub> <br>
<del>This caluse is not valid anymore</del> <br>
<ins>This will work like u tag</ins>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maiores amet doloribus dignissimos illo sapiente optio veritatis autem sunt eaque unde?
</p>
<p>
Hello <q>You there ?</q>
</p>
<p>
The <abbr title="World Wide Web Consortium">W3C</abbr> is the main orgnanization
</p>
<address>
1st Main <br>
Richmond Road <br>
Bengaluru
</address>
<details>
Here are the details
</details>
</body>
</html>