html
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
<!DOCTYPE html>
<html>
<head>
<title>
<!--this is a list program from lecture 3"Still learning" close title before body otherwise program won't work-->
</title>
</head>
<body>
<!--in body anything you write will show on page -->
this is a list program from lecture 3"Still learning"
</body>
<h1>
<!--<h1></h1> it is used for heading if the number is<h1></h1>then the heading will be big if it is <h2></h2> then small accordingly-->
unordered list
</h1>
<p> this is the list</p>
<ul>
<!-- for unordered list <ul></ul> tag-->
<li>
<!--<li></li> is used to put list item-->
iron
</li>
<br>
<li>
nitrogen -N
</li>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run