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).
<!Doctype>
<html>
<head>
<title></title>
</head>
<body>
Content
</body>
</html>
When you create a new HTML Web Page in Expression Web, that page consists of the following Main components:
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.