Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Topic 0 #105

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
21 changes: 21 additions & 0 deletions 00-HTML-CSS-basics/Excersice 1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<h1>My todo List!</h1>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

h1 should not be here

</head>

<body>
<ul>
<h2>Todo items!</h2>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</body>

</html>