Focus on the general concept, not the details.
It's not meant to be pretty, but to help you visualize your idea.
Also called a "paper protoype". It's not a contract, it is the first step in the process of web design
And remember to update your wireframes as you go!
How to start?
Online resources:
Best tool: Pen & paper :)
Create a file called index.html and use this code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My first page</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My first page</title>
</head>
<body>
<h1>Hello World!</h1>
<p>Welcome to Redi demo. This is normal text.</p>
<p style="color: red">This is normal text, but "red" color.</p>
</body>
</html>
There are at 3 main ways to specify the "style" your website should use:
<head>
element.As always, both have pros and cons. Ask your teachers or friends about their preferred way :)
<head>
tagImportant concepts:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>My first page</title>
<style>
#green-paragraph {
color: green;
}
.pink-paragraph {
color: pink;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
<p>Welcome to Redi demo. This is normal text.</p>
<p style="color: red">This is normal text, but "red" color.</p>
<p id="green-paragraph">
This green color style is set by and ID in the style header.
</p>
<p class="pink-paragraph">
This pink color style is set by a class name on the style header.
</p>
</body>
</html>
Complete the following courses of FCC:
From the Responsive Web Design Certification section:
If you get stuck, use slack or stackoverflow (remember those SO points! 😁)
From the JavaScript Algorithms and Data Structures Certification section:
If you finish early feel free to ask us on slack for more challenges