Friday, June 1, 2007

HTML Part 1

So here we are starting at the basics of HTML web design.
Most of us will just use softwares like Dreamweaver, Microsoft FrontPage to simplify the job. I mean, anyone can be a common web designer but what can be said about someone who knows codes directly from scratch if you're stuck in a company which doesn't supply one with codes and code assist softwares.

So it all boils down to basics. First how do one starts?

For simplicity, open a notepad and start creating your first html page.




<html>
<title>SystemTech.com - Technology Blog</title>
I am here at SystemTech.blogspot.com

</html>




Now then you have your first html page that doesn't do anything. So how about adding some totally cool lines.




<b>SystemTech.blogspot.com</b> is a blog that teaches <font color='red'>tech stuffs</font>
<p>Right?</p>



The above when include in the <html> tag will produce the below example

SystemTech.blogspot.com is a blog that teaches tech stuffs

Right?

So now you've seen it.

The <b> creates a bold part. It's always good practice to close an open tag.

<font color='red'> makes the text enclosed in it becomes red. One can actually change the color specified or if not can use the color codes such as #FF0000 for red.

Find this useful, or what else would you want to know? Comment here and give your feedbacks

No comments: