Monday, October 8, 2018

Html Structure : Writing your First Web Page

html,web page,html tutorial,html (programming language),html structure,html5,html tutorial for beginners,html for beginners,html website,web development,html5 (programming language),introduction to html,first web page,html5 tutorial,html css,web,html basics,lets create our first html project,structure,let's create our first html project,let's create our first html project and document
Html Structure : Writing your First Web Page

Html Structure in our last post we explain what Html Language is, how people access the web, and how does the web works, if you haven’t read the post click here to read. A lot  of people dont know how to structure their HTML Pages.   

Html: Introduction to Markup Language. Today we’re gonna explain the Structure of a Html Language, learning about Markup and some Tags and Elements. 

We come across all kinds of documents every day of our lives. Newspapers, insurance forms, shop catalogues... the list goes on. Many web pages act like electronic versions of these documents. For example, newspapers show the same stories in print as they do on websites; you can apply for insurance over the web; and stores have online catalogs and e-commerce facilities. In all kinds of documents, structure is very important in helping readers to understand the messages you are trying to convey and to navigate around the document. So, in order to learn how to write web pages, it is very important to understand how to structure documents. So in this post you will understand.

·        How HTML describes the structure of a web page
·        Learn how tags or elements are added to your document
·       Write your first web page

HOW HTML DESCRIBE THE STRUCTURE OF A WEB PAGE.

In the browser window you can see a web page that features exactly the same content as the Word document below to describe the structure of a web page, we add code to the words we want to appear on the page. You can see the HTML code for this page below. Don't worry about what the code means yet. We start to look at it in more detail on the next page. Note that the HTML code is in blue, and the text you see on screen is in black.

<html>
    <body>
            <h1>This is the Main Heading</h1>
<p>This text might be an introduction to the rest of the page. And if the page is a long one it might be split up into several sub-headings.</p>

<h2>This is a Sub-Heading</h2>
<p>Many long articles have sub-headings so to help you follow the structure of what is being written. There may even be sub-sub-headings (or lower-level headings).</p>
<h2>Another Sub-Heading</h2>
<p>Here you can see another sub-heading.</p>
</html>
    </body>

The HTML code (in blue) is made up of characters that live inside angled brackets — these are called HTML Elements. Elements are usually made up of two tags: an opening tag and a closing tag. (The closing tag has an extra forward slash in it.) Each HTML element tells the browser something about the information that sits between its opening and closing tags.

In the above code, the highlighted codes in blue are the Html Tags or Element; we have the opening tags and the closing tag in which the Document is shown in the browser. Tags are added at the beginning and ending of each sentence as you can see above.

STRUCTURE OF HTML TAG

Structure of a Html Tag looks like the explanation below, let’s look at the structure of a P Tag which is paragraph tag.


<P>
Left-angle bracket                                           RIGHT-angle X
  (less-than sign)                                               MORE-than sign)


The character or letter in the bracket indicates the tag’s purpose. As seen above the character stands for paragraph. In the closing tag there is a slash after the left-angle bracket. See below for example:



</P>
Left-angle bracket                                           RIGHT-angle X
  (less-than sign)                                               MORE-than sign)


As seen above the slash is after the left-angle bracket which is the less than sign.

WRITING YOUR FIRST WEB PAGE

Yes we’re going to write our first Html Web Page, to write our first Html Page we will introduced the structure of Html Page which is explain below:

<body>
You met the <body> element in the first example we created. Everything inside this element is shown inside the main browser window.

<head>
Before the <body> element you will often see <head> element. This contains information about the page.

<title>
The content of the <title> element are either shown at the top of the browser, above where you usually type in the URL of the web page you want to visit, or on the tab for that web page.

Ready we have started coding……


CONCLUSION

We have explained the full details on Html Structure in the below tutorial. If you have any question feel free to ask, comment, like and share to your friends.


Sunday, September 30, 2018

Introduction to Html Language

Introduction to Html Language


As promised earlier, this blog will be a library of learning Web Design , in this post we will learn about the Introduction  to Markup language, what it really takes to learn Web Development, firstly this blog is for people who will to learn Web Development from scratch and anyone who has a website built with Platform such as Blogger, Wordpress but want to customized it more, I suggest this blog for you…

The only thing you need to start with is a computer with a web browser and a text editor, although we have many Text editor to use but I suggest downloading Sublime text 3, downloading it and installing it then you’re ready to go.

Is Html Hard to Learn?

Many website and books that teaches HTML and CSS resemble dull manuals. To make it easier for you to learn, we threw away the traditional template used by publishers and redesigned this blog to make it easy for you to learn and build profitable website online

The answer is No, when you learn Html and css then put it into practice, then trust me within matter of time, you’re gonna know it.


Read Also:  Who Is A Web Developer Vs Web Designer





How People Access The Web?

Before we look at the code used to build websites it is important to consider the different ways in which people access the web and clarify some terminology. We have three different ways by which people access the web which are:
·       Browser: People access websites using software called a web browser. Common examples include Firefox, Internet Explorer, Safari, Chrome, and Opera. In order to view a web page, users might type a web address into their browser, follow a link from another site, or use a bookmark then it goes to the web page.

·       Web Server: When you ask your browser for a web page, the request is sent across the Internet to a special computer known as a web server which hosts the website. Web servers are special computers that are constantly connected to the Internet, and are optimized to send web pages out to people who request them. Some big companies run their own web servers, but it is more common to use the services of a web hosting company who charge a fee to host your site.

·       Devices: People are accessing websites on an increasing range of devices including desktop computers, laptops, tablets, and mobile phones. It is important to remember that various devices have different screen sizes and some have faster connections to the web than others.
Note: Screen Readers are also among the ways by which people access your website. Deformities and eye blindness and all visual impairment are used to learn.  

How Does The Web Works?

When You Visit A Website, The Web Server Hosting That Site Could Be Anywhere In The World. In Order For You To Find The Location Of The Web Server, Your Browser Will First Connect To A Domain Name System (DNS) Server. When you connect to the web, you do so via an Internet Service Provider (ISP).


Read Also:  Top 20 HTML Tags Used By The Best Programmers In The World


You type a domain name or web address into your browser to visit a site; for example: google.com, bbc.co.uk, microsoft.com. Your computer contacts a network of servers called Domain Name System (DNS) servers. These act like phone books; they tell your computer the IP address associated with the requested domain name.

An IP address is a number of up to 12 digits separated by periods / full stops. Every device connected to the web has a unique IP address; it is like the phone number for that computer. The unique number that the DNS server returns to your computer allows your browser to contact the web server that hosts the website you requested.

 A web server is a computer that is constantly connected to the web, and is set up especially to send web pages to users the web server then sends the page you requested back to your web browser.


CONCLUSION

In this post we have discuss the introduction of HTML Markup Language, how people access the web, how html can be successfully learned, what and what it takes to learn Html Language.

Hope this is useful, Try to subscribe to our Newsletter to get updated on every our post on how to learn Web development from scratch.

Feel free to ask any question in the comment box, and share to your fiends’ too.