<!DOCTYPE html>
<html>
<head>My Critical Thinking review</head>
<title>I am just me</title>
</html>
What is wrong with this?
<!DOCTYPE html>
<html>
<head>My Critical Thinking review</head>
<title>I am just me</title>
</html>
What is wrong with this?
The “My Critical Thinking review” part should be between <title>
tags and the “I am just me” should be between <h1>
or <h2>
or <h3>
tags, and those between <body>
tags
Something like:
<!DOCTYPE html>
<html>
<head>
<title>My Critical Thinking review</title>
</head>
<body>
<h1>I am just me</h1>
</body>
</html>
how cani get more lesson in each course ???
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.