Last lesson we've seen 3 ways to specify "style"
<head>
element.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My first page</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
</head>
<body>
<h1>Hello World!</h1>
<p>Welcome to Redi demo. This is normal text.</p>
<p>This is normal text, but "red" color.</p>
</body>
</html>
Let's see it in action!
We can import JS files but in slightly different way.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My first page</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<script src="script.js" defer></script>
</head>
<body>
<h1>Hello World!</h1>
<p>Welcome to Redi demo. This is normal text.</p>
<p>This is normal text, but "red" color.</p>
</body>
</html>
Let's see it in action!
Now we will mix all together and see what we can do with it.
How are you?
Please do the following:
TBD