Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Saturday, August 20, 2016

Midrub is an online tool that offers the freedom to make posts on social networks

With Midrub you are able to make simultaneous posts on multiple social networks at a time. Just connect to your social network accounts and with just one click publish your message, photo or whatever you want to share. https://www.midrub.com/

Monday, December 23, 2013

How to build a website from zero - First Tutorial

Hi guys! This is my first tutorial where i want to show you how can i build a simple HTML website from zero. I will explain to you how you can easily build a HTML website even if you don't know HTML.

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>