Web Design Stuff
HTML Tutorials    CSS Tutorials    Web Hosting   Resources
Create a Web Page 101
Making Web Pages Intro What is a Web Page? Why Make a Web Page? The History of HTML Learn HTML or XHTML?
Basic HTML
Basic HTML Tutorials Basic HTML Necessities How to Make a Web Page How to Edit a Web Page The Basics of HTML Tags Basic HTML Page Structure HTML Attributes
HTML Font Codes
HTML Font Codes Intro HTML Font Color Codes HTML Font Size Codes HTML Font Style Codes HTML Bold/Italic Codes Combining Font Codes
Formatting Text
Formatting Text Intro Making Paragraphs Miscellaneous Formatting Headings & Subheadings Creating Hyperlinks
Using Graphics
Using Graphics on the Web Add Graphics to Your Pages Graphics and Accessibility How to Align Graphics Page Color & Background Graphics as Hyperlinks Horizontal Rules
Creating Tables
HTML Tables Tutorials HTML Table Fundamentals Background & Border Color Table Frames & Rules Table Width and Alignment Cells 1 -Space & Alignment Cells 2 -Row Column Span Cells 3 -Width & Height
Making Lists
HTML Lists Tutorials Bulleted Lists Numbered Lists Definition Lists
HTML Frames
HTML Frames Tutorials Using Frames for Layout Advanced Frame Layouts Putting Hyperlinks in Frames Frame Border Width Color, Margin and Control Problems with Frames SmartFrames: A Solution SSI: An Alternative to Frames
Web Page Forms
Making Feedback Forms A Simple Feedback Form Installing NMS FormMail Debugging Your Setup My Web Host is Out to Lunch User Input Components Text Fields Checkboxes & Radio Buttons Dropdown Menus Push Buttons Layout and Presentation
Basic CSS
Basic CSS Tutorials What is CSS? Why You Should Use CSS How to Use CSS Inline Styles Embedded Style Sheets External Style Sheets Class Selectors ID Selectors Combining Selectors
CSS Properties
CSS Properties Intro Font Styles Width, Height & Spacing Borders Backgrounds Position Float & Alignment Hyperlinks
All About Web Hosting
Hosting Your Own Website What is a Web Host? Your Website's Home Page Building a Website Offline About Free Web Hosting Best Free Web Hosting Commercial Web Hosting How to Get a Domain Name Ecommerce Web Hosting Web Hosting Terminology
Free Web Design Tools
Best Free Website Tools Best Free Text Editors Best Free Graphics Editors Free Website Analysis Tools
Setting Up HTML Kit
HTML Kit Introduction How to install HTML Kit Screenshot Breakdown Basic Configuration Overall Appearance Shortcuts and Startup Editing Window Customizing Toolbars Using the Favorites Tab Making a New Actions Bar Odds and Ends
Free Templates
Free Website Templates Two Column Fixed Width Three Column Liquid Layout Miscellaneous Templates Dynamic Menu Effects Two Column Experimental Terms of Use About These Templates
Website Templates Help
Getting Started Template Zip File Download How to Edit Your Template What to Edit in the HTML How to Add Your Logo Making a Website
Web Design Tips
Web Design Basics Tables vs. Tableless Using Tables for Layout Example Table Layouts World's Crappiest Web Page
Twitter Backgrounds
Twitter Backgrounds Intro Cool Twitter Backgrounds Cool Twitter Backgrounds 2 Plain Twitter Backgrounds Dark Twitter Backgrounds Best Twitter Backgrounds Cute Twitter Backgrounds Music Twitter Backgrounds Music Twitter Backgrounds 2 Twitter Backgrounds 101 TERMS OF USE
All About Web Browsers
What is a Web Browser? Mozilla Firefox Internet Explorer Opera How to Set Up Firefox Top 5 Firefox Extensions
 
Contact
Post Some Feedback Send Me An Email Iron Spider Blog About Iron Spider... Site Conventions
 
 
 

 

What is a Web Page?

 
Web pages, browsers and servers, oh my!

Alrighty then, so you've decided to venture forth into the land of high falutin' webmaster jibber-jabber and figure out exactly what a web page is, eh? Congratulations!

Now most of us who have been on the internet can describe what a web page looks like (and sounds like.) You know that you are looking at a web page now and you know that when you use a computer to surf around the internet, your screen displays a page (usually with scroll bars on the right) that may contain formatted text, graphics, coloured backgrounds, animations, and sounds.

What a web page also contains and what separates it from other media is interactive 'links' and 'buttons' that you can either move over or click on using a pointing device. These actions, in turn, will either have a dynamic effect on the current page you're viewing or will —more commonly— take you to another web page. All web pages contain hyperlinks to other web pages. The gargantuan international collection of all these hyperlinked web pages is what constitutes the World Wide Web (WWW).

So that's what a web page looks like and where you can find one. Most people know this.

But what exactly is a web page?


Web Hosting Servers


In effect, a web page is actually an electronic text file stored on the hard drive of a computer that is constantly hooked up to the World Wide Web. Such a computer is called a web hosting server. When you call up a web page, usually by clicking on a link from another web page, your computer uses the internet to contact this web hosting server and retrieves or downloads this text file. It then reads this text file through the aid of a program called a 'web browser' and displays it on the screen according to the formatting and specifications laid out in it. For example, the name of the electronic text file producing the web page that you are currently viewing is called whatis.htm. This file name is normally at the end of the URL that appears in the address bar that runs across the top of your web browser:

http://www.ironspider.ca/webdesign101/whatis.htm

These electronic text files are written in a special language called HyperText Markup Language or HTML for short. The file extension for these text files can be either .html or .htm. This file extension indicates to any computer trying to open up the respective file that this is a web page and it should be opened using a web browser.


About HTML


HTML is not some kind of indecipherable hexadecimal computer code but rather is just plain English, i.e. it is comprised almost entirely of alphanumeric characters (a, b, c... 1, 2, 3... etc.) and some character symbols like # or %. One of the key components of HTML is angle brackets like this: < >. These angle brackets contain HTML elements or commands which your web browser intreprets and follows to create the respective web page. Using these HTML elements, contained in the angle brackets < >, you can convert any composition, article or technical reference into a web page and you can also use it to include graphics, sounds and a host of media formats.

This HTML text file contains what is known as the source code of a web page. Most web browsers offer a method of immediately viewing the source code of the web page that is currently loaded. For example, if you're using Internet Explorer then you can view the source code of this very page by clicking on View » Source.


Click on View » Source for Internet Explorer
(View » Page Source for Netscape, Mozilla and Firefox.)
viewsrc1 (17K)


And this is what you'll see:


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>
<title>How Browsers Interact with Web Hosting Servers to Make Web Pages</title>

<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META NAME="description" CONTENT="A brief article describing what a web page actually is (part of the IRON SPIDER Creating a Web Page series)...">
<META NAME="keywords" CONTENT="web page, internet explorer, formatted text, coloured backgrounds, interactive links, source code, electronic text file, server, ironspider, hypertext markup language, html elements, wysiwyg">
<META NAME="robots" CONTENT="all">

<link rel="stylesheet" type="text/css" href="../ispider8.css">
<script src="../ispider8.js" type="text/javascript"></script>

</head>

<body onload="pageLoad();"><a name="top"></a>

<div id="MainContainer" class="MenuSprites">

<!-- ============ Header DIV ============== -->
<div id="Header" class="HeaderFooterSprites">
<a id="HomeLink" href="../index.htm" title=" Go to the Iron Spider home page "> </a>


(...the rest of the source code...)




It may appear complicated at first glance but really HTML is just a kind of standardized shorthand using key words and abbreviations wrapped in angle brackets. Once you learn the language, it becomes like second nature.


HTML Editors vs. WYSIWYG Editors


There are a number of specialized editors that can greatly facilitate the task of producing the source code that creates web pages. These are known as HTML editors. There are also a number of specialized web design programs that don't require that you know any HTML coding. These programs rarely take you behind the scenes into the source code of a web page but rather work 'on top' using an interface that directly emulates the finished page itself. These web page editors are known as What-You-See-Is-What-You-Get editors or WYSIWYG editors.

There are many who swear that the only true web designers are those who work at the source code level using HTML editors (I run with this crowd.) Conversely there are many others who say that it doesn't make a difference and that WYSIWYG editors are the way to go.

Of course the choice is entirely up to you as to which kind of web authoring tool you should select. Most HTML editors are freeware. There are also several freeware WYSIWYG editors out there and some full-featured commercial WYSIWYG editors like Dreamweaver that enjoy use by amateur and pro alike. Be aware though that most professional web designers who use WYSIWYG editors still recommend having a sound knowledge of HTML coding.

At this point, however, you may be wondering why you should make a web page in the first place...
 
SEE ALSO:
  • What is Web Hosting?
  • Affordable Website Hosting
  • How to Make a Web Page





Best Free Stuff
for webmasters

Free Text Editors
Free Graphics Editors
Website Analysis Tools
Free Website Templates

See also:

Best Free Web Hosting

 

If you need a .COM web address, you can get one quick and easy at...

www.GoDaddy.com
INTRO TOP NEXT ~>
 
HTML Tutorials |  CSS Tutorials |  Web Hosting |  Domain Names |  Web Design Resources
Iron Spider © Copyright 2004-2011 Robert Darrell