html
html
1
2
3
4
5
6
7
8
9
10
11
12
<!-- Created by Oladepo Tesleem-->
<html>
<head>
<title>first page</title>
</head>
<body>
<h1>This is a <span> Title </span> of my page.</h1>
<p>Tayo's paragraph. </p>
<p>This is another paragraph. </p>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
/* Created by Oladepo Tesleem */
h1 span{
font-family:cursive;
color: lightcoral;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
// Created by Oladepo Tesleem
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run