HTML Final Study guide

Ace your homework & exams now with Quizwiz!

What is and HTML line break

● Uses <br> tag to create a line break within content.

What are disadvantages of HTML?

Limited to creating static and plain pages. ● Requires writing a lot of code for simple web pages. ● Lack of support for some custom tags across different browsers.

What are HTML elements?

The core building block of an HTML page. They define the structure represented by tags.

What are the advantages of HTML?

Universally supported by browsers. ● Easy to learn and use. ● Supports templates for easy web page design. ● Default in every Windows system. ● Essential for learning and using JavaScript.

What is the Basic Structure of an HTML Document?

● Begins with <html> and ends with </html>. ● Content is between <body> and </body>. ● Metadata is within <head>.

What is CSS?

● CSS (Cascading Style Sheets) is used to specify the layout and styles of HTML tags.

What is CSS style Atribute?

● CSS properties and values are applied to HTML elements using the style attribute. ● Syntax: <tag style="property:value;">

What are HTML image links?

● Commonly used to make images clickable, embedded within <a> tags.

What are HTML links?

● Created with <a> tag, using the href attribute. ● Supports local and absolute links.

What is HTML heading?

● Defined with <h1> to <h6> tags, <h1> being the largest and <h6> the smallest.

What are HTML Images?

● Defined with <img> tag, with attributes like src, alt, width, and height.

What are HTML tags?

● Defined with <p> tags.

What are html tables?

● Defines a table using <table>, <tr>, <td>, and <th> tags. ● Borders, padding, and spanning rows/columns.

What is the display Property?

● Defines how an HTML element should be displayed. ● Block-level elements vs. inline elements.

What is text alignment?

● Defines the horizontal text alignment for an HTML element. ● Example: <h1 style="text-align:center;">Centered Heading</h1>

What is CSS text color?

● Defines the text color for an HTML element. ● Example: <h1 style="color:blue;">A blue heading</h1>

What are Forms?

● HTML <form> element collects user input. ● Form elements like <input> for text fields, radio buttons, submit buttons, etc. ● Action attribute specifies the action to be performed when the form is submitted. ● Name attribute must be included for each input field. ● Grouping data using <fieldset> and <legend>.

How do you do HTML citations?

● HTML elements like <q> for short quotations and <blockquote> for longer quotes.

What are Formatting elements?

● HTML provides special elements for formatting text. ● Examples: <b>, <em>, <i>, <strong>, etc.

What is CSS background color?

● Sets the background color for an HTML element. ● Example: <body style="background-color:red;">

What is text size?

● Sets the text size for an HTML element. ● Example: <h1 style="font-size:300%;">Heading 300%</h1>

What are fonts?

● Specifies the font to be used for an HTML element. ● Example: <p style="font-family:courier;">This font uses courier.</p>

What are the different types of lists?

● Unordered Lists: <ul> and <li> tags. ● Ordered Lists: <ol> and <li> tags. ● Styling List Items: Using the list-style-type property.

What are HTML Comments?

● Used for documentation and hiding code from rendering. ● Syntax: <!-- This is a comment -->

What are inline frames?

● Used to display a web page within a web page. ● Defined with the <iframe> tag, with attributes like src, height, width.

What are HTML link Bookmarks?

● Used to jump to specific parts of a webpage. ● Created with id attribute and linked using # in the href.

What are HTML link targets?

● target attribute specifies where to open the linked document, such as _blank for a newwindow/tab.

How are HTML tags displayed?

Browsers render the content of HTML pages based on the tags, but they don't display the tagsthemselves.

What is HTML used for?

HTML is used to create web pages and websites by defining the structure and content of the page using markup language elements.

What does HTML stand for?

HTML stands for Hyper Text Markup Language. It is the skeleton of every website.

Basic HTML layout example.

<html> <head> <title>All About Baseball By:Tyler Williamson</title> </head> <body> <h1>All About Baseball<br>It Is Cool!</h1> <p> <h2>Background On Me </h2> <h3>Where I'm From </h3> <h3>Houston Texas</h3> <h4>Who I Play For</h4> <h4>OFFSEASON BASEBALL</h4> <h5>What Bat Do I Use</h5> <h5>Hype Fire</h5> <h6>What Glove Do I Use.</h6> <h6> Wilson A2000.</h6> <p/> </body> </html>


Related study sets

Chapter 65: Nursing Management - Arthritis and Connective Tissue Diseases

View Set

POSI 2310 Chapter 11: Congress: Balancing Nation Goals And Local Interest

View Set

The President's Cabinet-Executive Branch Departments

View Set

Unit 1: Structure and function of arteries, veins and capillaries

View Set

Unit 1 - Milestone 1 / Public Speaking

View Set

Module Five TestOut Practice Questions

View Set

Programming Fundamentals 1: Exam 4 (Ch 11 & 13)

View Set