HTML Fundamentals

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

What is the primary purpose of HTML comments in a document?

  • To describe or explain portions of your HTML code for developers. (correct)
  • To be displayed as a tooltip when hovering over an element.
  • To be executed as JavaScript code.
  • To define the style and layout of the HTML document.

Boolean attributes in HTML always require an explicit assignment of either TRUE or FALSE.

False (B)

What is the key difference between the id and class attributes in HTML?

The id attribute specifies a unique identifier for an HTML element, while the class attribute specifies one or more class names to apply to an HTML element.

In HTML, ________ is ignored by web browsers and consists of tab characters, line return characters, and extra spaces.

<p>whitespace</p> Signup and view all the answers

Match the following HTML code snippets with their descriptions:

<p><code>&lt;input type=&quot;checkbox&quot; checked&gt;</code> = A boolean attribute is used to enable a property without an assigned value <code>&lt;div id=&quot;header&quot;&gt;</code> = An HTML element has a single, unique identifier specified. <code>&lt;p class=&quot;paragraph&quot;&gt;</code> = An HTML element is part of one or more related groupings of elements. <code>&lt;!-- This is a comment --&gt;</code> = Descriptive notes</p> Signup and view all the answers

Which HTML element is generally used to mark text that will receive special formatting using CSS?

<p><code>&lt;span&gt;</code> (A)</p> Signup and view all the answers

Character entities can only be used via entity names, not entity numbers, in HTML documents.

<p>False (B)</p> Signup and view all the answers

What is the primary purpose of using HTML5 semantic elements?

<p>To replace <code>&lt;div&gt;</code> sprawl with cleaner, self-explanatory elements.</p> Signup and view all the answers

In HTML, an __________ list is used to display items in no particular order.

<p>unordered</p> Signup and view all the answers

Which of the following HTML elements is best suited for displaying code snippets?

<p><code>&lt;code&gt;</code> (D)</p> Signup and view all the answers

The width and height attributes are mandatory for all <img> elements in HTML.

<p>False (B)</p> Signup and view all the answers

What are the two ways to represent special characters (symbols) as character entities in HTML?

<p>Entity name and entity number</p> Signup and view all the answers

Match the HTML list types with their correct descriptions:

<p>Ordered List = Collections of items that have a set order. Unordered List = Collections of items in no particular order. Description List = Collection of name and description/definition pairs.</p> Signup and view all the answers

Which CSS color value method allows you to specify a color using hue, saturation, and lightness?

<p>HSL (B)</p> Signup and view all the answers

CSS3 supports only 17 standard color names.

<p>False (B)</p> Signup and view all the answers

In the RGBA color model, what does the 'a' stand for, and what does it control?

<p>alpha, transparency</p> Signup and view all the answers

The CSS unit _____ is relative to the font-size of the element.

<p>em</p> Signup and view all the answers

Which of the following is an absolute unit of measure in CSS?

<p>in (D)</p> Signup and view all the answers

Which color value is valid CSS?

<p>color: rgb(200, 50, 20); (A)</p> Signup and view all the answers

The percentage unit (%) in CSS is an absolute unit of measure.

<p>False (B)</p> Signup and view all the answers

Match the following CSS units with their descriptions:

<p>em = Relative to the font-size of the element % = Relative to another value in = Inches (Absolute unit) px = A relative measure, while in CSS3 it is absolute</p> Signup and view all the answers

In the CSS box model, what is the main difference between 'padding' and 'margin'?

<p>Padding is inside the border, affecting content spacing, while margin is outside the border, affecting element spacing. (A)</p> Signup and view all the answers

By default, a block element's box is only as wide as its content requires, regardless of the containing block's width.

<p>False (B)</p> Signup and view all the answers

Explain how the height and width properties in the CSS box model affect the overall size of an element's box.

<p>These properties set the dimensions of the content area. Border, padding and margin are then added to these values to determine the element's overall size.</p> Signup and view all the answers

The space between an element's content and its border is defined by the ______ property.

<p>padding</p> Signup and view all the answers

Match the CSS box model property with its description.

<p>Height and Width = Dimensions of the actual content of the box. Padding = Space between the content and the border of the box. Border = Line surrounding the box. Margin = Space around the border.</p> Signup and view all the answers

Which CSS property is used to set all border properties (width, style, and color) in one declaration?

<p>border (C)</p> Signup and view all the answers

The border-width property accepts only one value, which applies to all four sides of the border.

<p>False (B)</p> Signup and view all the answers

What keyword value for the background-repeat property prevents an image from repeating at all?

<p>no-repeat</p> Signup and view all the answers

To specify that a background image should remain fixed in the viewport and not scroll with the content, use the background-attachment property with the value _______.

<p>fixed</p> Signup and view all the answers

Match the border-style values with their descriptions:

<p>solid = A single, straight line dashed = A series of short square-edged segments or dashes double = Two parallel, solid lines with some space between them none = No border is displayed; the border-width is effectively zero</p> Signup and view all the answers

Given the CSS border-width: 1px 2px 3px 4px;, which side will have a border width of 2px?

<p>Right (D)</p> Signup and view all the answers

Which property controls whether a background image scrolls with the content or stays fixed?

<p>background-attachment (A)</p> Signup and view all the answers

What is the default value of the background-repeat property?

<p>repeat</p> Signup and view all the answers

Which attribute selector targets an <a> element whose title attribute is exactly posts from this country?

<p>a[title=&quot;posts from this country&quot;] (C)</p> Signup and view all the answers

The attribute selector img[src*="flag"] will select only img elements whose src attribute ends with 'flag'.

<p>False (B)</p> Signup and view all the answers

What is a pseudo-element selector used for?

<p>selecting parts of an element that do not exist as explicit HTML elements</p> Signup and view all the answers

The pseudo-class selector :_____ selects an element when the mouse pointer is hovering over it.

<p>hover</p> Signup and view all the answers

Match the pseudo-class selectors with their descriptions:

<p>:link = Selects links that have not been visited :visited = Selects links that have been visited :active = Selects an element that is being activated by the user :first-child = Selects an element that is the first child of its parent</p> Signup and view all the answers

Which of the following selectors would correctly target an <a> tag with an href attribute that begins with mailto:?

<p>a[href^=&quot;mailto:&quot;] (C)</p> Signup and view all the answers

Pseudo-class selectors can only be applied to <a> elements to style link states.

<p>False (B)</p> Signup and view all the answers

Write the CSS selector that targets the first line of a <p> element.

<p>p::first-line</p> Signup and view all the answers

Flashcards

Opening and Closing Tags

Marks the beginning and end of an HTML element. Most elements have both, except empty tags.

Empty Tags

HTML elements that only have an opening tag, and no closing tag. Examples include <img> and <br>.

Correct vs Incorrect Nesting

The correct way is nesting tags where inner tags are completely enclosed within outer tags. The incorrect way will cause rendering issues.

HTML Attributes

Provide additional information about HTML elements. They appear inside the opening tag.

Signup and view all the flashcards

Boolean Attribute

Represent either an ON or OFF value (TRUE or FALSE). They can be coded as just the attribute name.

Signup and view all the flashcards

Tag

Marks text for special formatting using CSS.

Signup and view all the flashcards

Tag

Indicates strongly important content.

Signup and view all the flashcards

Tag

Represents a reference to another work.

Signup and view all the flashcards

Displays time and date data.

Signup and view all the flashcards

Tag

Displays code snippets.

Signup and view all the flashcards

Ordered List (

    )

A collection of items in a specific order.

Signup and view all the flashcards

Unordered List (

    )

A collection of items where the order doesn't matter.

Signup and view all the flashcards

Description List (

)

A list of name and description/definition pairs.

Signup and view all the flashcards

Content Height and Width

The dimensions of the actual content inside an HTML element (e.g., text, images).

Signup and view all the flashcards

Padding

The space between the content and the border of an HTML element.

Signup and view all the flashcards

Border

A line (solid, dotted, dashed, etc.) surrounding an HTML element.

Signup and view all the flashcards

Margin

The space around the border of an HTML element.

Signup and view all the flashcards

CSS Box Model

A model that visualizes HTML elements as boxes with content, padding, border, and margin.

Signup and view all the flashcards

Attribute Selector: a[title="posts from this country"]

Matches an element with a title attribute that exactly matches 'posts from this country'.

Signup and view all the flashcards

Attribute Selector: [~=]

Matches an element where the specified attribute's value contains at least one of the words in a space-delimited list of words.

Signup and view all the flashcards

Attribute Selector: [^=]

Matches an element where a specified attribute's value begins with a specified value.

Signup and view all the flashcards

Attribute Selector: [*=]

Matches an element where a specified attribute's value contains a substring.

Signup and view all the flashcards

Pseudo-element selector

Selects something that does not exist explicitly as an element in the HTML document tree.

Signup and view all the flashcards

Pseudo-class selector

Targets either a particular state or a variety of family relationships of an element.

Signup and view all the flashcards

a:link selector

Selects links that have not been visited.

Signup and view all the flashcards

:hover selector

Selects elements that the mouse pointer is currently above.

Signup and view all the flashcards

Color Names in CSS

A way to define colors using names like 'red' or 'hotpink'. CSS3 expands this with 140 standard names.

Signup and view all the flashcards

RGB Color Value

A color model using three values (0-255) to represent the red, green, and blue components of a color.

Signup and view all the flashcards

Hexadecimal Color Value

A hexadecimal number defining a color using red, green, and blue values.

Signup and view all the flashcards

RGBA Color Value

An extension of RGB that includes an alpha channel to specify the transparency of the color.

Signup and view all the flashcards

HSL Color Value

Color model using Hue, Saturation, and Lightness to define colors.

Signup and view all the flashcards

em Unit

Relative units based on the font size of the element. 2em means 2 times the current font size.

Signup and view all the flashcards

Percentage (%) Unit

A unit of measurement that is relative to another value, often a parent element's property.

Signup and view all the flashcards

CSS Comments

A way to add notes to CSS code that are ignored by the browser. They begin with /* and end with */.

Signup and view all the flashcards

border-side-style

Specifies the style of a single side of an element's border (e.g., solid, dashed).

Signup and view all the flashcards

border Property

A shorthand property to set border width, style, and color in one line.

Signup and view all the flashcards

border-width

Sets the thickness of an element's border. Values can be thin, medium, thick, or a specific pixel value.

Signup and view all the flashcards

border-style

Defines the appearance of an element's border (e.g., solid, dashed, dotted).

Signup and view all the flashcards

border-color

Sets the color of an element's border using color names, hex codes, or rgb() values.

Signup and view all the flashcards

background Property

A shorthand property for specifying multiple background properties at once.

Signup and view all the flashcards

background-color

Sets the background color of an element. The transparent keyword makes the background see-through.

Signup and view all the flashcards

background-image

Specifies an image to be used as the background of an element.

Signup and view all the flashcards

Study Notes

COMP 1234 Lecture 1 - Introduction to Web Development

  • The lecture is an introduction to web development.

Agenda

  • A brief history of the Intranet.
  • How web applications work.
  • Introduction to HTML, CSS, JavaScript.
  • Tools for Web Development include Webstorm.
  • Introduction to web servers, HTTP and FTP.
  • Client / Server Communications
  • How web browsers interpret HTML/CSS/JavaScript.

History of the Internet

  • The internet started with ARPANET in the 1960s.
  • Email was created in 1971.
  • Online shopping was invented in 1979.
  • The first computer virus was spread in the 1980s.
  • The speed of the intranet was developed in 1986.
  • The first Browser was published in the 1990s.
  • eBay is founded in 1995.
  • WiFi was established.
  • Google was founded in 1998.
  • The internet started to become world wide.
  • The Internet of today is 2022+.

How Web Applications Work

  • Devices such as Desktops Computer, Tablets and Smart Phones connects via the internet to a Web Server.

The Architecture of the Internet

  • A web application is the clients, a web server, and a network.
  • Clients use web browsers to request webpages from the web server.
  • The web server returns the pages that are requested back to the client browsers.

LAN

  • Local Area Network directly connects computer to each other.
  • Often referred to as an intranet connection.

WAN

  • A Wide Area Network consist of two or more LANs connected by routers.
  • The routers route information from one network to another.

IXP

  • The Internet consists of many WANs that have been connected at Internet Exchange Points (IXPs).
  • There are many IXPs located throughout the world.

ISP

  • An Internet service provider (ISP) owns a WAN and leases network access.
  • It connects its WAN to the rest of the Internet at one or more IXPs

Static Web Pages

  • A static web page is an HTML document stored on a web server that does not change.
  • The HTML files (.html or .htm extensions), are examples of static web pages.

How a web server processes a Static Web Page

  • The client, uses a web browser to request via HTTP a web server.
  • That web server responds to the client, returning code written in HTML

Dynamic Web Pages

  • A dynamic web page is a web page whose construction is controller by an application server, processing server side code.
  • The parameters passed to the server determine how the assembly of the page is determined.

How a web server processes a Dynamic Web Page

  • The client, uses a web browser to request via HTTP a web server.
  • If the page is dynamic the web server will contact an Application Server, to prepare any data access from a database Server.
  • The Application server composes the page which is returned through the web-server to the client.
  • The web server then responds to the client, returning code written in HTML.

Introduction to HTML, CSS, JavaScript

HTML – Hypertext Markup Language

  • HTML is the standard markup language for documents designed to be displayed in a web browser.
  • It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript to help an application run efficiently.

CSS

  • Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML or XML.
  • CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript.

JavaScript

  • JavaScript is client-side scripting language, that is ran by the JavaScript engine of a web browser.
  • When a browser requests an HTML page that contains JavaScript or a link to a JavaScript it loads into the browser.
  • Because JavaScript runs on the client, not the server, it provides functions that don't require a trip back to the server.
  • JavaScript can help an application run more efficiently.

Tools for Web Development

Webstorm / Atom / Visual Studio Code

  • WebStorm, Visual Studio code and Atom are Integrated Development Environment (IDE) for HMTL, CSS and JavaScript
  • Like most IDEs, their job is to make your development experience more enjoyable, automating routine work and helping you handle complex tasks with ease.

Webstorm

  • Webstorm is a popular Integrated Development Environment to use for the lecture in this course
  • Ultimately the choice of IDE is up to the student

Client / Server Communication Model

  • Involves two components: Client requesting data, Server responds to the request
  • Typically there are many client in communication to a single server

Client Machines:

  • Desktops, laptops, smart phones, and tablets
  • Have a broad range of specifications for operating system, processing speed, screen size, available memory and storage

Server Machine

  • Hosts web applications, stores ser and program data, and performs security authorization tasks
  • Powerful system to handle high traffic and bandwidth
  • The essential characteristic of a server is that it is listening for requests, and upon getting one, responds with a message

Internet Protocols

  • Protocol is a set of rules that partners use when they communicate
  • TCP/IP is an essential internet protocol
  • Every OS implements these protocols, making fast web development possible

URL

  • Uniform Resource Locators (URL) allow client to request particular files from a server
  • URLs consist of two required components
  • The protocol used (ex http)
  • The domain (or IP address) to connect to)
  • Optional components include
  • The path that idenifies a file
  • Optional port
  • Query string
  • a fragment identifier

Hypertext Transfer Protocol

  • HTTP is the protocol of the web
  • HTTP establishes a TCP connection on port 80 by default
  • The server waits for the request, then responds with
  • Headers
  • Response Code
  • An optional message (which can include files)

HTTP Headers

  • Headers are sent in the request from the client and received in the response from the server
  • Request headers include data about the machine like Host, User-Agent, Cache settings
  • Response headers have info about the server answering the request and the data being sends, like server, Last Modified, Content Type and Encoding.

HTTP Request Methods

  • Common requests are GET, POST and HEAD request.
  • PUT and DELETE requests are used when constructing an API in NODE

HTTP GET Request

  • The most common type of HTTP Request
  • Asking for a resource, located at a specified URL to be retrieved
  • If you click on a link, type in a URL, or click a bookmark, you are making a GET request
  • Data can be transmitted through a GET request, with a query string

HTTP POST Request

  • POST Request transmit data to the server using an HTML form

Web Server

  • A fundamental web server takes web requests and responds to them
  • Real-world websites have many servers configured together in web farms
  • Run web server with a combination of OS, webserver software, database and scripting language

Hypertext Transfer Protocol Details

  • Allow your browser to communicate with a server and get info from internet
  • Use HTTP to construct websites and app

File Transfer Protocol (FTP)

  • Storage a database that allow access to service on internet
  • Is a set of standard protocols for file transfer of data
  • FTP utilizes a client/sever model.
  • FTP is ONLY used to transfer file

How Web Browsers and servers exchange HTML/CSS/JavaScript?

  • Web browsers do need user experience for website like they for traditional desktop software.
  • User does not download software, they just visit the URL
  • Typical developer my must understand in order to develop the websites and browser

Fetching a web Page

  • Single webpage facilitated by the browser requests of initial HTML page
  • Parse result HTML results to find all resources referenced from within its
  • HTML images Style sheet, etc...

Absolute Path and Relative URLs

  • Referencing a page or resource on an external site will require a Full URL
  • A full URL will contain the protocol and the domain name
  • Referencing a resource on the current server can use relative referencing
  • If the URL does not inlcude HTTP will indicate the browser will request the current the current server files

Absolute Path

  • Is a Path that describes to the location of folder or file and regardsless of working directory
  • Absolute path contains all full address of the file location to refer certain directory computer as (D: DocumentsMy/Document.doc)

Relative Path to File

  • Relative Path it describes the allocation file or folder relative to the current working directory(DocumentMydocument.docx) example

Linking

  • To link a file,use simple the file name with same directory
  • To link to subdirectory use the subdirectory with slash and file name
  • Grandchild directory it include the all directory and subdirectory before the file name
  • Parent directory will use (../ )
  • Sibling Directory use (../ ) moves up then use same techniques for grand child and child

Relative Path Example

  • Index.html, /graphichs/image.png, /help/article/how-do-i-set-up a webpage.html
  • Abolute PAth, https//:www.mysite.com/help/article/how-do-i-set-up a webpage.html

GBLearn Hosting(George Brown Learn)

  • Allow student in George Brown to gain experiences working with real server with individual hosting account.
  • Once student is get account access with website(https//:www.My.gblearn.com/)
  • The GBLearn administrator allow receive and email with all information the account activation — To Access the GBlran Accout with a file Transfer protocols like Flilezilla. To loign the your GBLearn you will need 3 pieces of information
  • HostName, Account and password

HTML Basic Details

  • A simple HTMl document looks like the example in slide
  • Working with HTML tags,openings and closing Tags:

Tags Elements

  • .,

    Here is a link list:

  • Empty Tags
    , Src-“logo.gif”alt-“Murach loga
  • Correct Tags Element copy-copy
  • Correct nesting todayToday Copy the today
  • An opening tag with one Attributes
  • an opening tag with 3 attributes

Boolean Atttributes

-Input type=“checkbox” named=“mlalllist.com" Notes -Boolean atttributes resents as an “on” and “off” (True or False)

  • Boolean attriburts codes like just name of attributes

HTML Eleemnt Id’s and attributes

  • Opening tags attribute
    An opening tag with calsses attributes - link”" Click to Contact Us class Name""

HTML and Comments

  • HTML are text <!— Comments --!>
  • Can be used to describing HTML and explaining portion of the code.. Withe Space ignored

CSS Basic

  • The CSS style rule consists of Selector with Declaration enclosed braces.

CCS Element Style

  • A CSS consists of the selector , property , value as: H2{Font –style : italic; bottom-border; 3PX solid #EF9C00:}

HTML useing external C SS file A document with HTML using and external css with

Copyright © 2021
14

  • Select or element type* to code a selector to the element

CSS style

  • Font to family ARIAL

Types of selection (ID AND CLASS )

15 You code select that ID number or by coding “# CopyRight

Select element by class You can code Select element by Coding a period follow class anme.as example

Validate HTML/CSS

Validators

-W3C
  • Html markup validator(https://validator.w3.org)
  • CSS validator(https://Jigsaw.w3.oeg/css.validator

HTML Syntax

  • HTML Documents are compsed of HTML Elementd and some content
  • A HTML element is identifies within document that enclosed in by tags
  • Elements contain a name which appears in the opening and closing tag
  • Elements can contain attriubes. An attributes is when an element contains a "Name=Value"

Nested HTML

  • An HTML Element Can Contain Other HTML elements. That is said to be "Child element
  • And Any elaments inside Child it Descendent Element

Proper Nesting

  • HTML nested element mus be Properly nested
  • A child ending tag must not occr before is parent’a end tag

DOCTYPE

  • Declartion to the Browser about the page about precess

HTML Element

  • Required to use , or , or <
  • XHTml are continue with theme — Element its optional attributes to tell the browser that the languages is bieng used

HTML Code

  • Contains description elements about the documents such title,encoding and jva script it uses

Body Element

Body contains some content displayed by browser

Touring Html Elements

  • Headers describe the main structures with six level
  • Parapraghs The basic unit of TEXT
  • LINK Hyperlinks are essential and future all web reference to anther page that it will same
  • Inlie text Element Do not change the flow of text

Unordered Lists

  1. With in list collection off a list item Element

Division

Containe text or another elements 7

Rules

  • Usually display by with horizontal • Character special Symbols 9

Semantic bloack element 10

Semanic structure

Semantic Structure and HTML

So far main HTML element that's see Headings,paragraphs List sematic BlOCK Div. Sprawl HTML cleaner and self extanatory Element

Semantic elements include

nav,header,footer, main

##Semantic and elekemtk H5 do no apply do not apply any special presentation to be used and designed your website.

Figure and fgcaption

  • The figures Eleemnts be use and must contait

HTML Tag

This photo for a 3rd Edition ,Randy,Connolly Pearson, and inc

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

More Like This

HTML5 Semantic Elements
10 questions
HTML Semantic Elements Quiz
148 questions
HTML Divs and Semantic Elements
5 questions

HTML Divs and Semantic Elements

ProgressiveAllegory294 avatar
ProgressiveAllegory294
Use Quizgecko on...
Browser
Browser