Using the following requirements and design constraints create your first welcome.htm web page and view it.

1. Requirements

Write and view our first web page:

  • Using Microsoft Notepad on Your Desktop Environment
    • Write a starter HTML document and view it in FireFox.

2. Design Input

2.1 Working Directory

  • C:\html5

2.2 File Name

  • welcome.htm

3. Web Page – welcome.htm

<!DOCTYPE html>
<html>
	<head>
	
	</head>
	<body>
	
	</body>
</html>

3.1 View the Page in FireFox

  • View Source in Browser
  • Developer Tools in Browser

4. Update the Web Page – welcome.htm

<!DOCTYPE HTML>
<html>
	<head>
		<title>The Garden Company</title>
	</head>
	<body>
	
	</body>
</html>

4.1 View the Page in FireFox

  • View Source in Browser
  • Developer Tools in Browser

5. Update the Web Page – welcome.htm

<!DOCTYPE HTML>
<html>
	<head>
		<title>The Garden Company</title>
	</head>
	<body>
		<h1>The Garden Company</h1>
		<p>Welcome to The Garden Company, located in the heart of Central Indiana.</p>
	</body>
</html>

5.1 View the Page in FireFox

  • View Source in Browser
  • Developer Tools in Browser