Code Template

1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="title">My App</div>
<div class="app">
<div class="screenshot">image</div>
<div class="description">text</div>
</div>
</body>
</html>

Notices

  1. The title and link put inside <head> tag
    1
    2
    3
    4
    <head>
    <title>We're learning selectors!</title>
    <link rel="stylesheet" href="style.css">
    </head>