scrimba
HTML & CSS
Comments in HTML and CSS
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Comments in HTML and CSS
AboutCommentsNotes
Comments in HTML and CSS
Expand for more info
index.html
run
preview
console
<html>
<head>
<title>Comments!</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Comments!</h1>
<p>Comments in HTML and CSS can be <strong>very useful</strong>. They let you leave notes to yourself or others. It can be reminders on why you did something, explanations, or even to dos when you don't have time to finish something.</p>
</body>
</html>
Console
index.html
-5:37