view cart
 1-866-363-5633
www. Expression - Web - Tutorial .com


Expression Web Tutorials:  Learn How to Build Web Sites with CSS & HTML  ~  A Place For Beginners


'Anatomy' of an HTML Web Page - Expression Web

When we create a blank HTML Web Page in Expression Web, that page consists of some basic structures or elements.  This saves us from having to write all this code from scratch, which in turn, helps us to work more efficiently.  Besides, it's easier!!

Take a look at the Image below.  The image illustrates the basic components that exist in an Expression Web - Web Page (or any HTML web page).

Basic Components

<!Doctype>
<html>
<head>
<title></title>
</head>
<body>
Content
</body>
</html>

 

Main Components of an HTML Web Page

When you create a new HTML Web Page in Expression Web, that page consists of the following Main components:

  • 1.  DOCTYPE
  • 2.  <html> </html> Root Element
  • 3.  <head> </head>     "The head section"
  • 4.  <title> </title>   Title Tag  (is located within the <head> section)
  • 5.  <body> </body>  

 

When we begin making a layout, we will place a div on the page.  That div is automatically placed between the <body> and </body> tags.  Therefore, the <body> is really the background of our web page and we usually begin by styling this background with CSS.

See Anatomy of a Layout  next apge