Podcast
Questions and Answers
What is the primary purpose of HTML comments in a document?
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
.
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?
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.
In HTML, ________ is ignored by web browsers and consists of tab characters, line return characters, and extra spaces.
Match the following HTML code snippets with their descriptions:
Match the following HTML code snippets with their descriptions:
Which HTML element is generally used to mark text that will receive special formatting using CSS?
Which HTML element is generally used to mark text that will receive special formatting using CSS?
Character entities can only be used via entity names, not entity numbers, in HTML documents.
Character entities can only be used via entity names, not entity numbers, in HTML documents.
What is the primary purpose of using HTML5 semantic elements?
What is the primary purpose of using HTML5 semantic elements?
In HTML, an __________ list is used to display items in no particular order.
In HTML, an __________ list is used to display items in no particular order.
Which of the following HTML elements is best suited for displaying code snippets?
Which of the following HTML elements is best suited for displaying code snippets?
The width
and height
attributes are mandatory for all <img>
elements in HTML.
The width
and height
attributes are mandatory for all <img>
elements in HTML.
What are the two ways to represent special characters (symbols) as character entities in HTML?
What are the two ways to represent special characters (symbols) as character entities in HTML?
Match the HTML list types with their correct descriptions:
Match the HTML list types with their correct descriptions:
Which CSS color value method allows you to specify a color using hue, saturation, and lightness?
Which CSS color value method allows you to specify a color using hue, saturation, and lightness?
CSS3 supports only 17 standard color names.
CSS3 supports only 17 standard color names.
In the RGBA
color model, what does the 'a' stand for, and what does it control?
In the RGBA
color model, what does the 'a' stand for, and what does it control?
The CSS unit _____
is relative to the font-size of the element.
The CSS unit _____
is relative to the font-size of the element.
Which of the following is an absolute unit of measure in CSS?
Which of the following is an absolute unit of measure in CSS?
Which color value is valid CSS?
Which color value is valid CSS?
The percentage unit (%) in CSS is an absolute unit of measure.
The percentage unit (%) in CSS is an absolute unit of measure.
Match the following CSS units with their descriptions:
Match the following CSS units with their descriptions:
In the CSS box model, what is the main difference between 'padding' and 'margin'?
In the CSS box model, what is the main difference between 'padding' and 'margin'?
By default, a block element's box is only as wide as its content requires, regardless of the containing block's width.
By default, a block element's box is only as wide as its content requires, regardless of the containing block's width.
Explain how the height
and width
properties in the CSS box model affect the overall size of an element's box.
Explain how the height
and width
properties in the CSS box model affect the overall size of an element's box.
The space between an element's content and its border is defined by the ______ property.
The space between an element's content and its border is defined by the ______ property.
Match the CSS box model property with its description.
Match the CSS box model property with its description.
Which CSS property is used to set all border properties (width, style, and color) in one declaration?
Which CSS property is used to set all border properties (width, style, and color) in one declaration?
The border-width
property accepts only one value, which applies to all four sides of the border.
The border-width
property accepts only one value, which applies to all four sides of the border.
What keyword value for the background-repeat
property prevents an image from repeating at all?
What keyword value for the background-repeat
property prevents an image from repeating at all?
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 _______.
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 _______.
Match the border-style
values with their descriptions:
Match the border-style
values with their descriptions:
Given the CSS border-width: 1px 2px 3px 4px;
, which side will have a border width of 2px
?
Given the CSS border-width: 1px 2px 3px 4px;
, which side will have a border width of 2px
?
Which property controls whether a background image scrolls with the content or stays fixed?
Which property controls whether a background image scrolls with the content or stays fixed?
What is the default value of the background-repeat
property?
What is the default value of the background-repeat
property?
Which attribute selector targets an <a>
element whose title
attribute is exactly posts from this country
?
Which attribute selector targets an <a>
element whose title
attribute is exactly posts from this country
?
The attribute selector img[src*="flag"]
will select only img
elements whose src
attribute ends with 'flag'.
The attribute selector img[src*="flag"]
will select only img
elements whose src
attribute ends with 'flag'.
What is a pseudo-element selector used for?
What is a pseudo-element selector used for?
The pseudo-class selector :_____
selects an element when the mouse pointer is hovering over it.
The pseudo-class selector :_____
selects an element when the mouse pointer is hovering over it.
Match the pseudo-class selectors with their descriptions:
Match the pseudo-class selectors with their descriptions:
Which of the following selectors would correctly target an <a>
tag with an href
attribute that begins with mailto:
?
Which of the following selectors would correctly target an <a>
tag with an href
attribute that begins with mailto:
?
Pseudo-class selectors can only be applied to <a>
elements to style link states.
Pseudo-class selectors can only be applied to <a>
elements to style link states.
Write the CSS selector that targets the first line of a <p>
element.
Write the CSS selector that targets the first line of a <p>
element.
Flashcards
Opening and Closing Tags
Opening and Closing Tags
Marks the beginning and end of an HTML element. Most elements have both, except empty tags.
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
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
HTML Attributes
Signup and view all the flashcards
Boolean Attribute
Boolean Attribute
Signup and view all the flashcards
Tag
Tag
Signup and view all the flashcards
Tag
Tag
Signup and view all the flashcards
Tag
Tag
Signup and view all the flashcards
Signup and view all the flashcards
Tag
Tag
Signup and view all the flashcards
Ordered List (
)
Ordered List (
- )
Signup and view all the flashcards
Unordered List (
)
Unordered List (
- )
Signup and view all the flashcards
Description List (
)
Description List (
- )
Signup and view all the flashcards
Content Height and Width
Content Height and Width
Signup and view all the flashcards
Padding
Padding
Signup and view all the flashcards
Border
Border
Signup and view all the flashcards
Margin
Margin
Signup and view all the flashcards
CSS Box Model
CSS Box Model
Signup and view all the flashcards
Attribute Selector: a[title="posts from this country"]
Attribute Selector: a[title="posts from this country"]
Signup and view all the flashcards
Attribute Selector: [~=]
Attribute Selector: [~=]
Signup and view all the flashcards
Attribute Selector: [^=]
Attribute Selector: [^=]
Signup and view all the flashcards
Attribute Selector: [*=]
Attribute Selector: [*=]
Signup and view all the flashcards
Pseudo-element selector
Pseudo-element selector
Signup and view all the flashcards
Pseudo-class selector
Pseudo-class selector
Signup and view all the flashcards
a:link selector
a:link selector
Signup and view all the flashcards
:hover selector
:hover selector
Signup and view all the flashcards
Color Names in CSS
Color Names in CSS
Signup and view all the flashcards
RGB Color Value
RGB Color Value
Signup and view all the flashcards
Hexadecimal Color Value
Hexadecimal Color Value
Signup and view all the flashcards
RGBA Color Value
RGBA Color Value
Signup and view all the flashcards
HSL Color Value
HSL Color Value
Signup and view all the flashcards
em Unit
em Unit
Signup and view all the flashcards
Percentage (%) Unit
Percentage (%) Unit
Signup and view all the flashcards
CSS Comments
CSS Comments
Signup and view all the flashcards
border-side-style
border-side-style
Signup and view all the flashcards
border Property
border Property
Signup and view all the flashcards
border-width
border-width
Signup and view all the flashcards
border-style
border-style
Signup and view all the flashcards
border-color
border-color
Signup and view all the flashcards
background Property
background Property
Signup and view all the flashcards
background-color
background-color
Signup and view all the flashcards
background-image
background-image
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"
- 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 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
- 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.