Announcing your site on other sources
Mailing lists:
- Yahoo maintains a huge resource of mailing lists.
Newsgroup:
- DejaNews service is a great way to search Usenet newsgroups for particular topics.
- comp.infosystems.www.announce is a forum where people post new site announcement.
| Mp3, Music and Audio | Price |
|---|---|
| Free Trial | |
| Free Trial | |
| $0.99 |
There are a lot of cool features in today’s music players, and then there’s something called quality, sometimes.
Hopefully, the recommendations from Tips-Tricks.com will help you make a well guided choice.
Web Page Directories:
There are many directories growing every day around the world. Please check at Yahoo. They maintain a huge resource.
Commercial service:
We no longer maintain the list of commercial submission services. If you're interested in commercial service, please visit our sponsor, AAA Internet Promotion, to help keeping this site alive:)
AAA Internet Promotions offers a variety of web site promotions. The program is very interesting. You can ask for a regular directories listing service or even ask them to write PR letters sending to newspapers and magazines
to promote your site. (Click on the above banner to visit)
You can also find the lists of commercial submission services at Yahoo and webreference.
Miscellaneous:
- Give your site an award.
Free submissions:
- Gelon.net - Use this JavaScript to register you page in popular search engines.
- Submit Express - Free website URL submission to more 40 top search engines and directories
- Bizpromo.com - You can fill out one form and submit your site to all of major search engines at one time!
Create your first web page
First, type the first line of our web page
<HTML>
then type this
</HTML>
You can type them in capital case or lower case. It doesn't matter.I typed them in capital to make it easy to read. Nothing has happened yet; we have just told the browsers (Netscape, Internet Explorer, and etc.) that this is a HTML document. The first <HTML> is to tell the browser that "Here's the begining of HTML section." </HTML> tells the browsers that "Here's the end of HTML section." Inside these two tags is where you will put the contents of your web page in.
Notice that we have <HTML> and </HTML>. This is how we open and close HTML tags. The closing tag is always in </.....> format. In most case, you will have to close every tag that you open.
Next, add a HEAD section to your web page.
<HTML>
<HEAD>
<TITLE>My first page</TITLE>
</HEAD>
</HTML>
<TITLE> tells the browsers that the title of our web page is "My first page." This sentence will appear at the top of browser window. Where? Look at the top of this window (the one that you're reading) and you will see "The easiest HTML guide for beginners"
OK. Now, let's put in the first word that the browser will display.
<HTML>
<HEAD>
<TITLE>My first page</TITLE>
</HEAD>
<BODY>
<H1>HELLO</H1>
</BODY>
</HTML>
We put <BODY> to tell the browser that this is the starting point of the body of our document. <H1> refers to header 1, which is the biggest size (see below.) You can try from <H1> to <H6>. Different numbers will yield different sizes.
Here is an example:
h1
h3
h5
Let's get back to our document. It now looks like this in a browser.
HELLO
Let's save this web page and view it in your browser. Save the page using 'save as' and name it whatever you like. Let's name it "mypage.htm" Please remember the location of your file. You may create a new directory for it or just simply save it in drive C. Open your web browser (Netscape or Internet Explorer) and try to open the file that you just save. Click on 'File' -> 'Open' and type in c:\mypage.htm or the path to your file.