-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<html>
<body>
<head>
<link rel="stylesheet" href="style.css">
<title>
Simplest from scratch coding exercise
</title>
</head>
<main>
<h1>
Hello World!
</h1>
<p>
This is the simplest from scratch coding exercise to answer "What's the best way to learn to code if you know nothing?".
</p>
<p>
The goal is to create a simple web page that displays the text "Hello World!".
</p>
<p>
The page should be valid HTML5 and should be styled with CSS.
</p>
<p>
The page should be built from scratch, without using any frameworks or libraries.
</p>
<p>
Play around by adding <a href="https://www.w3schools.com/html/html_elements.asp">HTML elements</a> and <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Reference">CSS styles</a>.
</p>
<p>
You don't need JavaScript yet.
</p>
</main>
</body>
</html>