-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtutorial.html
More file actions
43 lines (43 loc) · 968 Bytes
/
tutorial.html
File metadata and controls
43 lines (43 loc) · 968 Bytes
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
<!DOCTYPE html>
<html>
<head> <title> Tutorial </title>
<style>
section {
height:300px;
}
</style>
</head>
<body>
<header>
<h2 align="center" id="toc"> Web Technologies Tutorial </h2>
<ol>
<li> <a href="#html"> HTML Basics </a> </li>
<li> <a href="#css"> CSS Examples </a> </li>
<li> <a href="#js"> JavaScript Tutorial </a> </li>
</ol>
</header>
<section>
<h3 id="html"> HTML Basics </h3>
<a href="#toc"> <img src="Images/back.gif" height="30" width="80"> </a>
<font color="red">
<p>
... some text....
</p>
</font>
<h3 id="css"> CSS Examples </h3>
<a href="#toc"> <img src="Images/back.gif" height="30" width="80"> </a>
<font color="green">
<p>
some text...
</p>
</font>
<h3 id="js"> JavaScript Tutorial </h3>
<a href="#toc"> <img src="Images/back.gif" height="30" width="80"> </a>
<font color="blue">
<p>
... some text...
</p>
</font>
</section>
</body>
</html>