The first step:
I start to build my website by using <html></html> tags.
<html> is an opening tag and must html be closed with a closing tag when you are finished typing a html code. This tags are often used to describe the same thing.
The second step:
I will add the <head></head> tags between HTML tags.
<html>
<head>
</head>
<html>
<head> tags provides information about my webpage.
The third step
I will add the <title></title> tags between HEAD tags.
<html>
<head>
<title>TutScripts</title>
</head>
<html>
<title> tags lets me write the title of the page.
The fourth step
I will add the <body></body> tags after <head> tags.
<html>
<head>
<title>TutScripts</title>
</head>
<body>
</body>
<html>
<body> provides the visible page content.
The fifth step
I will add the <p></p> tags between <body> tags.
<html>
<head>
<title>TutScripts</title>
</head>
<body>
<p>Hello World! </p>
</body>
<html>
<p> displays a text paragraph.
The sixth step
I will use CSS to customize my text. To do that i will add <style></style> tags between <head> tags.
<html>
<head>
<title>TutScripts</title>
<style>
</style>
</head>
<body>
<p>Hello World! </p>
</body>
<html>
I use color: to change color of the text in paragraph. Then, I will add bold to the text by using font-weight tags.
<html>
<head>
<title>TutScripts</title>
<style>
p{color:#900;
font-weight:bold;}
</style>
</head>
<body>
<p>Hello World! </p>
</body>
<html>
Hi, you used to write excellent articles, but the last several posts have been kinda boring… I miss your super writing. Past several posts are just a little out of track! Visit Website
ReplyDelete