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,
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>
<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>
<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.
0 Response to "Best Free Beginner HTML Tutorials For Students Of Web Development"
Posting Komentar