html
html
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Style-Type" content="text/css">
<link href="mark.css" rel="stylesheet" type="text/css"/>
<title>Page Title</title>
</head>
<body>
<p>LIVERPOOL are <mark>SUPER REDS</mark></p>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
mark
{
color: red;
background-color: yellow;
font-style:italic;
font-weight:bold;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run