-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.65 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
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Test Page</title>
<link href="styles/style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<h1>WHATDEV Front-End developer guide - Summary</h1>
<img src="images/best-laptop-for-developers.jpg" alt="An apple macbook showing
some lines of code on a dark background">
<p>You want to become a
<a href="https://www.jabjabjavascript.com/">real web developer</a>. Whether you want
to become a full-stack developer (fastest path with
js/node) or a front-end developer, you understand that
Javascript is a must-know programming language for web
development.</p>
<p>You’re sick and tired of people lying to your face and
giving you false hopes like “land your first job in x
months spending just a few hours a week from the comfort
of your home”…</p>
<p>How to learn HTML and CSS:</p>
<ol>
<li>learn the basics of the language</li>
<li>go to your fav websites</li>
<li>curate all micro components that you like</li>
<li>layouts, positioning, flexbox, grid, box model, specificity</li>
<li>start building</li>
<li>REPEAT...</li>
</ol>
<button>Change user</button>
<script src="scripts/main.js"></script>
</body>
</html>