Chapter 1 Flashcards

1
Q

What is a HTML5?

A

Hypertext Markup Language

It is used for web design and development

(Should not be confused with other programming languages = Visual basic, Java, C++, C# etc.)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is w3s?

A

World Wide Web Consortium = it is an international community which sets a standard.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Is HTML5, CSS3 and Javascript considered to be platform-independent technologies.?

A

Yes. It can run in any OS as long it has a browser.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Where can you go to check if your browser supports the features of HTML5?

A

go to html5test.com

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is CSS?

A

Cascading Style Sheet + it works with HTML5 to separate content from the styling.

It provides styling text fonts, colors, contents and layout of the pages.

It is now able to work with text effects, transformations, animations, rounded corners, gradients, borders, backgrounds, images and more.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How does CSS work?

A

It allows elements of the same type, name or class to be styled as needed across several web pages at once.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Markup tags?

A

HTML uses markup tags to describe the type of content that will be used in the construction of a web page = html document.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Tags? Pair, empty?

A

Pair tag = start and end tag (has forward slash). It uses angle brackets.

It is not case sensitive.

    Content Goes here! 

Empty tags; Single tag. Break tag is used to move content down the HTML document one line. <br></br>

Examples of empty tags = <hr> <img></img>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is HTML elements?

A

It includes the content, start and end tags.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is deprecated elements?

A

There are elements that will no longer be supported by the W3C standards and therfore browsers will stop displaying deprecated elements.

Some browsers do still display deprecated elements, but eventually it will not longer be displayed.

It is recommended to stop using these tags.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are HTML attributes?

A

Allows developer to specify additional information about the element.

Attributes must be placed in the start tag with a space following the tag name and each attribute name should be immediately followed by an equals and the value of the attribute wrapped in double quotes

Content

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are common global attributes?

A

id = specifies unique identifier that the element will be referenced by in JavaScript, CSS and HTML document.

class= The class attribute is similar to a group that the element belongs to and multiple elements can be assigned to the same class.

style =The style attribute is a way of embedding CSS style properties inside of the HTML element. This is most often done to override styles that are set globally to the HTML document or to a class that the element belongs to.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are new HTML 5 Global Attributes?

A

contenteditable

spellcheck

hidden

draggable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a declaration tag?

A

is a declaration tag used by the browser to identify what type of document specifications the browser should use to render the HTML markup.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a character encoding?

A

The character encoding for an HTML document specifies the standard used to define special characters and how the browser should render and interpret those characters. The character encoding is set in the tag which should be nested inside of the head tag.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are entities?

A

Entities are used to provide an alternate way to display HTML characters. The following table contains some of the most commonly used entities.

17
Q

What’s another name for helper applications?

A

They are called plug-ins.

Examples of well-known plug-ins are Java applets.

Plug-ins can be added to web pages with the tag or the tag.

Plug-ins can be used for many purposes: display maps, scan for viruses, verify your bank id, etc.

18
Q

What is HTML Geolocation APLi used for?

A

It is used to get geographical position of a user only when user approves it.