ASK A QUESTION OR READ ANSWERS
|
|||
What is an HTML File?
Fortunately, we aren't going to concern ourselves very much with the bizarre words because they aren't necessary. Aolpress, Frontpage, Dreamweaver and CoffeeCup are all examples of WYSIWYG (What you see is what you get) editors. This means that basically what you type in them is what your webpage will look like. However, it sure doesn't hurt to know some HTML to use to tweak any HTML editor. How about an example of HTML what does a webpage look like? Sort of like what is below. In fact highlight and copy what you see in the box above (CTRL+C) and place it in our online editor on the right side of this page (CTRL+V) and click view. What you saw was a webpage generated by the simple lines above. Now copy what is in the box above, paste it into Notepad or Wordpad or even Word and change the line "This is my first homepage" to anything you want to say. Now save it as mypage.htm and launch your web-browser and open it from your hard drive. You just used a simple text editor to make your first page. Now why am I showing you this? because I want you to see how we had to do each page back in the 90's. You'll learn to appreciate how easy it is today with a web editor. Tags and Elements
HTML tags are surrounded by the two characters < and >
HTML tags normally come in pairs like <b> and </b> HTML tags are not case sensitive, <b> means the same as <B> but you need to get in a habit of using lowercase in everything. |
FAQFrequently Asked Questions Q: After I have created HTML file, but I can't find it with my browser. Why? A: watch carefully where you saved it from withing notepad or wordpad. Sometimes those programs save things in odd places. Create a directory on your computer and use it for all of the saving and you'll always know where you put those files. If you are using Windows use the Start-Search function to find your file.
Q: I have tried to edit an HTML file but the browser still shows the old page. A: Hold down the CTRL button on your keyboard and hit refresh or reload in your browser. This is caused by a cach system in modern browsers.
|
||