Web design 1
which language tokens in HTML will open and close tags
<>
smallest heading tag
<h6>
which element should come before the <body> element
<head> </head>
what are the two tags that are children of the <html> tag?
<head>and</head> <body>and</body>
how do you put an image in
<img src="url"width="150"height="150">
Allows you to place a paragraph in your text
<p></p>
which element will allow us to change the title of our page in search results and in browser tabs
<title></title>
how do you write an unordered list element
<ul></ul>
The web standard allows programmers on many different computer platforms to dispersed format and display the information server. These programs are called A.Web Browsers B.HTML C.Internet Explorer D.None of these
A.Web Browsers
Web pages starts with which of the following tag? A.<Body> B.<Title> C.<HTML> D.<Form>
C.<HTML>
What is the correct HTML for adding a background color? A.<background>yellow<Background> B.<body color = "yellow"> C.<body bgcolor = "yellow"> D.<body bg ="yellow">
C.<body bgcolor = "yellow">
<table></table>
Creates a table
What type of software is used to transfer files to a web host
FTP software
Largest heading html tag
H1
what should be the first tag in every webpage
HTML
What does HTML stand for?
Hypertext Markup Language
what does <body> do
Lets you see what you are putting on the website
A certain web page has one <h1> tag and three <h2> tags. What might this tell you about the content of the page?
The <h1> is most likely the title of the page or the site, and the two <h2> tags may indicate two separate main areas of content on the page.
Using complete sentences, write everything you know about the <p> tag
The <p> tag is short for "paragraph" as it defines a paragraph of text-based content. A <p> tag can be found anywhere inside the <body> tag. Browsers automatically apply white space to the top and bottom of <p> tags to separate them for easier reading. Other tags like <em> might be found nested inside a <p> tag to provide extra formatting for certain words in the paragraph.
use a complete sentence to describe the <title> tag.
The content of this tag will be shown in the title bar of the web browser and may also be used by search engines, social media shares, and other automated tools.
use a complete sentence to describe the purpose of HTML.
We use html tags to organize content for a web page.
What does HTML stand for? a) Hyper Text Markup Language b) Home Tool Markup Language c) Hyperlinks and Text Markup Language
a) Hyper Text Markup Language
What is the correct HTML for creating a hyperlink? a) <a url="http://www.w3schools.com">W3Schools.com</a> b) <a href="http://www.w3schools.com">W3Schools</a> c) <a>http://www.w3schools.com</a> d) <a name="http://www.w3schools.com">W3Schools.com</a>
b) <a href="http://www.w3schools.com">W3Schools</a>
Choose the correct HTML tag for the largest heading. a) head b)h1 c)h6 d)header
b)h1
What is the correct HTML for inserting an image? a) <img alt="MyImage" image.gif /img> b) <image src="image.gif" alt="MyImage"> c) <img src="image.gif" alt="MyImage"> d) <img href="image.gif" alt="MyImage">
c) <img src="image.gif" alt="MyImage">
which declaration will remove bullet points from an unordered list
list-style: none;
what is the term for the http:// portion of a web address
protocol
which attribute specifies file paths for the <img> element
src
which property will align text
text-align
what's the difference between the properties "background" and "background-image"
the background property can set all the values for a background, including colors and images the background-image property can only set the image.