-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchapter1.html
More file actions
45 lines (38 loc) · 1.32 KB
/
chapter1.html
File metadata and controls
45 lines (38 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CHAPTER 1</title>
</head>
<body>
<!-- Heading and Paragraph Elements -->
<h1>Hello User !!</h1>
<h2>Welcome...</h2>
<!-- Ordered list and Unorderd List -->
<p> <b>Time</b> envovled from writing till the execution of program :</p>
<ol type = "a"> <!-- here type = "a" is ATTIRBUTE in which type is attribute and a is value -->
<li>Writing Time</li>
<li>Compile Time</li>
<li>Run Time</li>
</ol>
<p> <b>Datatype</b> in most programming languages :</p>
<ul>
<li>char</li>
<li>int</li>
<li>float</li>
<li>double</li>
<li>bool</li>
</ul>
<!-- Image Element : used to add image to your page -->
<img src="https://upload.wikimedia.org/wikipedia/commons/5/51/Google.png" alt="google logo img" width="230">
<!-- Anchor Elements are used to add links to your page -->
<!-- href means hyper text reference -->
<p>Click here to visit Google : <a href="https://google.com">Google</a> </p>
<!-- br, bold, italic and underline tags -->
<br>
<p>Bold tag : <b>Abby</b></p>
<p>Italic tag : <i>Abby</i></p>
<p>Underline tag : <u>Abby</u></p>
</body>
</html>