Web Design Lesson 001 – Build your first web page

If you know HTML, CSS and JavaScript, you can build most web pages.

You can build a simple web page knowing only HTML.

HTML stands for HyperText Markup Language.

Let us create a new page. Copy the following code and paste it into a file, then save it as index.html.


<html>
<head>
<meta charset="utf-8">
</head>

<body>
This is the first web page. It will not look good, but we are not trying to make it look good now. We are getting started. Eventually, we will make it look good.
</body>

</html>

 

Open your file in any browser.

Continue reading “Web Design Lesson 001 – Build your first web page”

The beginning

Do you want to learn how to design aesthetically pleasing websites? Do you know a little HTML? Do you find overwhelmed by too much of information?

If you answered yes to most of the questions above, you will find this blog useful.

Keep visiting – a series of articles will begin soon!