CodeHS Unit 9 Quizlet
What is the <b> tag?
The <b> tag bold texts.
What is the <th> tag?
The <th> tag defines a table header.
What is the <title> tag?
The <title> tag defines the title of a webpage.
What is the <tr> tag?
The <tr> tag defines a table row.
What is the <ul> tag?
The <ul> tag creates an unordered (bulleted) list.
What is the ID attribute?
The ID attribute is an attribute we can add to an HTML tag to style that specific element. The ID tag is preceded by a hashtag. There should only be one tag with a given ID on any webpage. We define ID inside of <style> tag. ID style overrides overrides class and tag style in the case of conflict.
How can we use class attribute?
.alert { property:value; } This rule applies to all HTML element with the class "alert" even if these HTML element aren't the same. ------------------------------------------------------- p.alert { property:value; } This rule applies to only <p> element with the class "alert".
What is metadata?
A set of data that describes and gives information about other data.
What is CSS used for?
Cascading Style Sheets or CSS was developed to define the style of a webpage. We use CSS because: HTML wasn't intended to be able to style web pages, CSS allows us to add style Separate the content of a web page from the design of a web page Easily modify the look and feel of a web site even at a large scale
What is <!DOCTYPE html>?
Doctype tells the browser which version of HTML you are using
What is is a HTML tag and what it should looks like?
HTML tags mark up the text of a document in order to tell the browser how the text should be displayed. Tags start and end with angle brackets. The name of the tag goes in between the angle bracket. For example: <h1> is the opening tag and follow with </h1> is the ending tag.
What does HTML stand for and what is it?
Hypertext Markup Language and it is a programming language for creating websites
What is the <a> tag?
The <a> tag creates a hyperlink that leads to another website when clicking a word.
What is the <body> tag?
The <body> tag is where the actual content of the document goes.
What is the <br> tag?
The <br> tag creates a line break on the resulting webpage.
What is the <h1> tag (the number can be bigger than one)?
The <h1> tag creates a heading for the website and as the number next to h gets bigger, the heading size gets smaller.
What is the <head> tag?
The <head> tag contains important information about the document.
What is the <hr> tag?
The <hr> tag creates a horizontal line on the screen.
What is the <html> tag?
The <html> tag says everything in between these two tags is our html page.
What is the <i> tag?
The <i> tag italicized texts.
What is the <img> tag?
The <img> tag allow users to insert images into their webpage.
What is the <li> tag?
The <li> tag defines a list item. Go with both <ol> and <ul> tag.
What is the <ol> tag?
The <ol> tag creates an ordered (numbers) list.
What is the <p> tag?
The <p> tag creates a paragraph of text.
What is the <table> tag?
The <table> tag is a container for all table data includes table row(s) and table header(s).
What is the class attribute?
The class attribute is an attribute we can add to HTML tags in order to style a specific group of elements. We define class inside of <style> tag. The ID tag is preceded by a dot. The class style overrides tag style in the case of conflict.
What are the steps in URL?
The first step is The URL: You type the URL for the web page into your browser. The second step is The Request: The browser sends a message to a server requesting a resource. The third step is The Response: The server sends a response to the browser with the resource attached. The fourth step is Rendering the Page: Your browser takes the resource and renders it in the browser window.
What are the properties in style attribute?
The style attribute contains useful properties like coloring the text, setting background color for webpage, changing font size or style of the text, or aligning the text.
What is the style attribute?
The style attribute lets us add several different types of styles to our HTML elements. The syntax for style attribute is: <tagname style = "property:value;">.
What is a URL? (Uniform Resource Locator)
URL is locating a resource that exists somewhere in the Internet. The URL is looking for the domain and the path of a resource. The domain is where in the Internet you need to look for this resource. The path is what resource you are requesting.
What is the syntax for CSS?
selector { property: value; }
