-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (43 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<title>HTML Tutorial</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Welcome to DEV Classes by Computer Science Society NIT Silchar</h1>
<p>In this tutorial, we will cover the following topics:</p>
<div class="cls1">
<ul>
<li>Creating headings</li>
<li>Creating paragraphs</li>
<li>Creating lists</li>
<li>Creating links</li>
<li>Buttons</li>
</ul>
</div>
<h1>Creating Headings</h1>
<h1>Example of h1</h1>
<h2>Example of h2</h2>
<h3>Example of h3</h3>
<h4>Example of h4</h4>
<h5>Example of h5</h5>
<h6>Example of h6</h6>
<p>This is a paragraph.Now we will create list</p>
<div class="cls1">
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ul>
</div>
<h2>Creating Links</h2>
<div class="cls1">
<a href="https://www.instagram.com/cssnits/" target="_blank">Click here to visit official Instagram handle of CSS NITS </a>
</div>
<h2>Button</h2>
<button id="btn">Know More</button>
<h2>End of tutorial</h2>
<p>Congratulations! You have now learned the basics of HTML</p>
</body>
</html>