Kitten            Welcome to Read: 01



Read: 01 “Introductory HTML and JavaScript”

Structure:

To bulid a web page you need to write the code that turn the wrods into web page, so here we will talk about the bones of the web page which is the Structure.

Think about the stories you read in a newspaper: for each story, there will be a headline, some text, and possibly some images. If the article is a long piece, there may be subheadings that split the story into separate sections or quotes from those involved. Structure helps readers understand the stories in the newspaper.

The HTML is the langunage used to build a web pages, فاث HTML stands for HyperText Markup Language. The HyperText part refers to the fact that HTML allows you to create links that allow visitors to move from one page to another quickly and easily. A markup language allows you to annotate text, and these annotations provide additional meaning to the contents of a document. If you think of a web page, we add code around the original text we want to display and the browser then uses the code to display the page correctly. So the tags we add are the markup.

So, now I think that we got enhoth talking so let us start coding.

<html>
    <head>
        <title>This is the Title of the Page</title>
    </head>
    <body>
        <h1>This is the Body of the Page</h1>
        <p>Anything within the body of a web page is
        displayed in the main browser window.</p>
    </body>
</html>

This code give you this output:

This is the Title of the Page

This is the Body of the Page

Anything within the body of a web page is displayed in the main browser window.

You can chcek this figure,
SampleHtml


Extra Markup

In HTML5, web page authors do not need to close all tags, and new elements and attributes will be introduced. At the time of writing, the HTML5 specification had not been completed, but the major browser makers had started to implement many of the new features, and web page authors were rapidly adopting the new markup.

Here we will go farther with the HTML5 commands, and we will have some examples, so keep track us here to get know more info about HTML5.


HTML5 Layout:

HTML5 is introducing a new set of elements that help define the structure of a page. The new HTML5 give you a better experience with layout building than the old versions, I will mention the differences here.

we will discusses the process that you will use when you are creating a new website. Every website should be designed for the target audience—not just for yourself or the site owner. It is therefore very important to understand who your target audience is.

We have two types of your target audience: Individuals or companies. So, you should know the answers for those questions:

You have the answers for those questions. How is that? When you want to build a website; you decide that because you have something to share with others! So, you know who are those people who wants what you are sharing with them. From this point you should find your ideal audience and study them to know more about them. What they are like, what they are hate and even what they are doing in the morning! Are you kidding me? No, when you know all those details, you will give them the best experience when they visit your website, because you build this website to be suitable for them not for you!

After you finished the above step, now you will plan for your website; How it should be? So, there is something called site map; which is a diagram of the pages that will be used to structure the site. And there is a technique called card sorting; which involves placing each piece of information that a visitor might need to know on a separate piece of paper and then organizing the related information into groups. For an example of a site map please, see the following figure.

Figure example site map

Wireframes

is a simple sketch of the key information that needs to go on each page of a site. It shows the hierarchy of the information and how much space it might require. By creating a wireframe, you can ensure that all of the information that needs to be on a page is included.

You should not include the color scheme, font choices, backgrounds or images for the website in the wireframe. It should focus on what information needs to be on each page and create a visual hierarchy to indicate the most important parts of each page. For an example of a wireframe please, see the following figure.

Figure example site map

Organizing your page

The primary aim of any kind of visual design is to communicate. Organizing and prioritizing information on a page helps users understand its importance and what order to read it in. We have here three main words: Content, Prioritizing and Organizing.

Designing Navigation

Site navigation not only helps people find where they want to go, but also helps them understand what your site is about and how it is organized. Good navigation tends to follow these principles..


Programming with JavaScript

Did you ever used the slideshow or forms in any webpage? How you interact with them? Did you access, modify, program or react to the content in some webpage?


I think that you already did those things! This is done by Java Script, yes the language that used to :

Before you learn how to read and write the JavaScript language itself, you need to become familiar with some key concepts in computer programming.

How do we declar a function:

```
function printtest() {
    document.write("test);
}
```


How we call a function:

```
printtest();
``` --- <br>

This summry is taken from priveous reading notes. Code 102-Read 03 and Read 04.





Read Title ToGo
Read: 01 Introductory HTML and JavaScript
Read: 02 HTML Text, CSS Introduction, and Basic JavaScript Instructions
Read: 03 HTML Lists, CSS Boxes, JS Control Flow
Read: 04 HTML Links, CSS Layout, JS Functions
Read: 05 HTML Images; CSS Color & Text
Read: 06 JS Object Literals; The DOM
Read: 07 HTML Tables; JS Constructor Functions
Read: 08 More CSS Layout
Read: 09 Forms and Events
Read: 10 JS Debugging
Read: 11 Assorted Topics
Read: 12 Docs for the HTML canvas Element & Chart.js
Read: 13 Local Storage
Read: 14a CSS Transforms, Transitions, and Animations
Read: 14b What Google Learned About Teams