Web Development and Design Foundations with HTML5 (8th Edition)
Web Development and Design Foundations with HTML5 (8th Edition)
8th Edition
ISBN: 9780134322759
Author: Terry Felke-Morris
Publisher: PEARSON
Expert Solution & Answer
Book Icon
Chapter 7, Problem 1AYK

Explanation of Solution

Predict the result:

Given Code:

<!--HTML Tag-->

<html lang="en">

<!--Head Tag-->

<head>

<!--Title Tag-->

<title>Predict the Result</title>

<meta charset="utf-8">

<!--style Tag -->

<!--Internal CSS-->

<style>

<!--Alignment for body tag -->

body { background-color: #eaeaea;

color: #000;

font-family: Verdana, Arial, sans-serif; }

<!--Alignment for wrapper tag-->

#wrapper { width: 80%;

margin: auto;

overflow: auto;

min-width: 960px;

background-color: #d5edb3;}

<!--Alignment for navigation buttons -->

nav { float: left;

width: 150px; }

<!--css applied to main -->

main { margin-left: 160px;

margin-right: 160px;

background-color: #ffffff;

padding: 10px; }

aside { float: right;

width: 150px;

color: #000000; }

</style>

<!--end of internal style sheet-->

<!--close tag -->

</head>

<!-- body of the program -->

<body>

<!-- division tag -->

<div id="wrapper">

<header role="banner">

<h1>Trillium Media Design</h1>

</header>

<!-- close tag -->

<!--navigation button-->

<nav role="navigation">

<!-- arrange in unordered lists -->

<ul>

<li><a href="index.html">Home</a></li>

<li><a href="products.html">Products</a></li>

<li><a href="services.html">Services</a></li>

<li><a href="clients...

Blurred answer
Students have asked these similar questions
Using CSS, how would you center the text in a header of an HTML table? A) Use the align property. B) Use the text-align property. C) Use the justify property. D) Add &nbsp; until the text is centered.
JavaScript Programming Pick a date and display the day of the week with that code <!DOCTYPE html><html><head><!--  Filename: index.htm--><meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"><title>Day of the Week</title><link rel="stylesheet" href="styles.css" /><script src="modernizr.custom.05819.js"></script></head> <body><header><h1>Day of the Week</h1></header> <article><h2>Day of the Week Lookup</h2><form><fieldset><label for="dateSelected">Select a date</label><input type="date" id="dateSelected" /></fieldset><fieldset class="button"><button type="button" id="determineDay">Find day</button></fieldset><fieldset><p>Day of the Week</p><p…
HTML Display the x, y and sum in the  webpage after input of x and y....___ <!DOCTYPE html> <html lang="en">     <head>         <meta charset="UTF-8">         <meta http-equiv="X-UA-Compatible" content="IE=edge">         <meta name="viewport" content="width=device-width, initial-scale=1.0">         <title>             SIMPLE CALCULATOR         </title>     </head>         <body>         <script>             var num1 = prompt("X:   ");             var num2 = prompt("Y:   ");             var sum = x + y;         </script>     </body> </html>
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:9781305503922
Author:Patrick M. Carey
Publisher:Cengage Learning