HTML - [3] Adding text
Programming Stuff :: HTML :: HTML/XHTML
Page 1 of 1 • Share •
HTML - [3] Adding text
HyperText Markup Language
HTML
[Adding some text]
To get text on your website you could just type the text you want to be displayed between the <body> </body> tags
Tags you can use to make the text look different: from <h1>TEXT</h1> to <h6>TEXT</h6>
to make a break you should use <br>
code you could have now:
HTML
[Adding some text]
To get text on your website you could just type the text you want to be displayed between the <body> </body> tags
Tags you can use to make the text look different: from <h1>TEXT</h1> to <h6>TEXT</h6>
to make a break you should use <br>
code you could have now:
- Code:
<html>
<head>
<title>My Website</title>
</head>
<body bgcolor="Green">
<h1>Welcome to my website!</h1><br>
<h3>This is the first website Iv'e made</h3><br>
<br>
<h3>Greeting from me.</h3>
</body>
</html>

Robin- Moderator

- Number of posts: 11
Age: 18
Location: Holland
Registration date: 2008-08-31
Permissions of this forum:
You cannot reply to topics in this forum





