Best Free Beginner HTML Tutorials For Students Of Web Development

Best Free Beginner HTML Tutorials For Students Of Web Development - Hello reader A Collection Of Tips Gadget , On this occasion I share tips Best Free Beginner HTML Tutorials For Students Of Web Development, please comment if there are less understood yet.

Post : Best Free Beginner HTML Tutorials For Students Of Web Development
Title : Best Free Beginner HTML Tutorials For Students Of Web Development
Post Education, Post Tips and Tutorials,

lihat juga


Best Free Beginner HTML Tutorials For Students Of Web Development

Opening and Closing Tags
 
HTML code is most commonly referred to as tags. The majority of tags have both an opening tag and a corresponding closing tag. Every HTML file begins with this opening tag:

<html>
Every HTML file ends with the corresponding closing tag:

</html>
 
Notice the / in the closing tag? All closing tags must have this slash. You know why? Because it's a closing tag, that's why. Below the opening html tag come the opening and closing head tags:

<head> </head>
The head tag doesn't have any affect on what appears on the web page, it's job is to hold certain other types of tags, one being the title tag:

<title>My First Webpage</title> 
 
Ah, look at that, there's some text between the opening and closing title tags, this is where the title of a web page is entered, it will appear in the browser's title bar:
 
 
Next comes the closing head tag. Remember, a closing tag has a slash ( this thing / ). So this is what the code should look like so far:

<html>
<head>
<title>My First Webpage</title>
</head> 

 
Now let's get to putting something on the webpage. Everything that is seen on web pages is found between the opening and closing body tags:

<body> </body>
Example:
<html>
<head>
<title>My First Webpage</title>
</head>>

<body>
Look Ma, I'm Making my first webpage
</body>
</html> 

 
Notice in the example that the closing html tag was added to the code. This means we are finished (at least for now), so save your code following the instructions given in the introduction of this tutorial.


A few tips this time Best Free Beginner HTML Tutorials For Students Of Web Development

Writing or tips Best Free Beginner HTML Tutorials For Students Of Web Development,Hopefully find a solution.

You 've read my writing Best Free Beginner HTML Tutorials For Students Of Web Development Url Link https://tipsgadgetcollection.blogspot.com/2016/01/best-free-beginner-html-tutorials-for.html Success bravo.

0 Response to "Best Free Beginner HTML Tutorials For Students Of Web Development"

Posting Komentar