-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml-task-3.html
61 lines (47 loc) · 2.05 KB
/
html-task-3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML TASK 3</title>
</head>
<body>
<a href="index.html">Task 1</a>
<a href="html-task-2.html">Task 2</a>
<a href="html-task-3.html">Task 3</a>
<a href="html-task-4.html">Task 4</a>
<h1>OUTPUT</h1>
<h3>HTML List: Orderd, Unordered & Definition List</h3>
<hr>
<p>Following is the list or proposed student activites like: </p>
<ol>
<li>Develop programs related with unit vice topics in computer laboratory.</li>
<li>Develop any module of to be useful in real life applications.</li>
<li>Multimedia presentation of module developed by students.</li>
</ol>
<hr>
<p>List of Software/Learning Websites</p>
<ul>
<li>ASP Tutorial - W3Schools</li>
<a href="https://www.w3schools.com/asp" target="_blank">www.w3schools.com/asp</a>
<li>Classic ASP Tutorials & Articles - Web Wiz</li>
<a href="https://www.webwiz.co.uk" target="_blank">www.webwiz.co.uk - Knowledgebase</a>
<li>HTML Tutorial</li>
<a href="https://www.w3schools.com/html" target="_blank">www.w3schools.com/html</a>
<li>CSS Tutorial</li>
<a href="https://www.csstutorial.net" target="_blank">www.csstutorial.net</a>
<li>VBScript Tutorial - Tutorials Points</li>
<a href="https://www.tutorialspoint.com/vbscript/index.htm" target="_blank">www.tutorialspoint.com/vbscript/index.htm</a>
<li>ADO Tutorial - W3Schools</li>
<a href="https://www.w3schools.com/asp/ado_intro.asp" target="_blank">www.w3schools.com/ADO/default asp</a>
</ul>
<hr>
<dl>
<dt>HTML</dt>
<dd>Hyper Text Markup Language</dd>
</dl>
<h1>Muhammad Arham Ali Khan <br>
Roll No 4277
</h1>
</body>
</html>