ForumsProgramming ForumHTML

4 4072
zoogle11
offline
zoogle11
14 posts
Nomad

Well i dont know if this is actually considered a programming language but do you guys know any good intermediate and beginner tutorials for HTML and CSS cause i cant find any good ones to use.

  • 4 Replies
Darkroot
offline
Darkroot
2,763 posts
Peasant

W3S schools has so pretty good beginner stuff.

Or you might want to go to your local library and borrow some stuff.

Also if you need help you can ask me I now alot on basic HTML and CSS but it's not my speciality.

selsCT
offline
selsCT
23 posts
Nomad

first things first
in the windows menu search for editor
then copy the text into the editor,and save as a html document.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<title>your title</title>
<center>zoogle11</center>
<b>Hello</b>
&lt>
</p>
<hr>
</html>


ask me!

nesanelf
offline
nesanelf
560 posts
Nomad

Here's a basic guide to html: First you must memorize these tags:
<u> underline
<b> bold
&lt> parag.
<title> obvious
<h1-6> headings there are sizes of headings from <h1>,<h2>,<h3>,etc.
<html> begin html
<hr> basically a line separating stuff
</...> means end tag ...

Now start of like this:

<!DOCTYPE>
<html>
<html>
<title> blah blah
</title
<h1> .....
</h1>
<body>
&lt>
blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah
</p>
</body>
</html>

anymore questions ask me or selsCT, it seems like me he has extensive knowledge of html and CSS. here is a URL to a html translator to test out your html knowledge.

[urlhttp://www.trancedive.com/contents/tools/html_emulator/[/url]

Showing 1-3 of 4