Click here to Skip to main content
15,921,279 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Hello Friends,
I m new in this field so i want to ask you to how to create a home page using HTML only. that can have header, fooder,a menu, a horizontal scrolling messages below menu,, page have 3 section, one have pictures, second have details about the page and last section have another vertical scrolling links. and in fooder have link of facebook, twiter and contact me.

thank you
Posted
Comments
Sergey Alexandrovich Kryukov 11-Sep-13 22:11pm    
Yes, you can do it, through learning HTML. Hope you can do it all by yourself.
—SA

You can create it in Dream Weaver : where you can set HTML 4 when creating in a new document in which you have set DocType = HTML 4.01 Transitional/Strict.

After creating that document you will find below lines of code.

XML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
</head>

<body>
/* Set your Entire code here via external or external Style Sheet. */

</body>
</html>
 
Share this answer
 
To create a simple website, you should learn HTML & CSS.

Start with this[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900