16829 html

21

Upload: satyam-pandey

Post on 17-Jul-2015

156 views

Category:

Technology


0 download

TRANSCRIPT

Page 1: 16829 html
Page 2: 16829 html

• What does HTML stand for?Hyperlinks and Text Markup Language

• Hyper Text Markup Language • Home Tool Markup Language

Page 3: 16829 html

• Who is making the Web standards?The World Wide Web Consortium

• Mozilla• Microsoft

Page 4: 16829 html

• Choose the correct HTML tag for the largest heading<h6>

• <heading>• <h1> • <head>

Page 5: 16829 html

• What is the correct HTML tag for inserting a line break?<br />

• <break />• <lb />

Page 6: 16829 html

• What is the preferred way for adding a background color in HTML?<background>yellow</background>

• <body style="background-color:yellow"> <body background="yellow">

Page 7: 16829 html

• Choose the correct HTML tag to make a text bold<bold>

• <b>• Choose the correct HTML tag to make a text

italic<i>

• <italic>

Page 8: 16829 html

• What is the correct HTML for creating a hyperlink?<ahref="http://www.w3schools.com">W3Schools</a>

• <a url="http://www.w3schools.com">W3Schools.com</a>

• <a>http://www.w3schools.com</a>• <a

name="http://www.w3schools.com">W3Schools.com</a>

Page 9: 16829 html

• How can you create an e-mail link?<mail>xxx@yyy</mail>

• <mail href="xxx@yyy"> • <a href="mailto:xxx@yyy"> • <a href="xxx@yyy">

Page 10: 16829 html

• How can you open a link in a new browser window?<a href="url" target="new">

• <a href="url" new>• <a href="url" target="_blank">

Page 11: 16829 html

• Which of these tags are all <table> tags?<table><head><tfoot>

• <thead><body><tr>• <table><tr><tt> • <table><tr><td>

Page 12: 16829 html

• Choose the correct HTML to left-align the content inside a tablecell<tdleft>

• <td leftalign>• <td valign="left"> • <td align="left">

Page 13: 16829 html

• How can you make a list that lists the items with numbers?<list>

• <dl>• <ol> • <ul>

Page 14: 16829 html

• How can you make a list that lists the items with bullets?<dl>

• <list> • <ul>• <ol>

Page 15: 16829 html

• What is the correct HTML for making a checkbox?<input type="check" />

• <checkbox>• <input type="checkbox" />• <check>

Page 16: 16829 html

• What is the correct HTML for making a text input field?<input type="textfield" />

• <textfield> • <input type="text" />• <textinput type="text" />

Page 17: 16829 html

• What is the correct HTML for making a drop-down list?<input type="list" />

• <list> • <input type="dropdown" /> • <select>

Page 18: 16829 html

• What is the correct HTML for making a text area?<input type="textarea" />

• <input type="textbox" /> • <textarea>

Page 19: 16829 html

• What is the correct HTML for inserting an image?<img href="image.gif" alt="MyImage" />

• <img alt="MyImage">image.gif</img> • <image src="image.gif" alt="MyImage" />

<img src="image.gif" alt="MyImage" />

Page 20: 16829 html

• What is the correct HTML for inserting a background image?<body background="background.gif"> <background img="background.gif">

• <img src="background.gif" background />

Page 21: 16829 html