Web Development Flashcards

1
Q

CSS (Cascading Style Sheets)

A

A style sheet language used for describing the presentation of a document written in HTML.Example: color: blue; sets the text color to blue in CSS.

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

HTML (Hypertext Markup Language)

A

The standard markup language for creating web pages and web applications.Example: <h1>Hello, World!</h1> creates a heading level 1 element with the text “Hello, World!”.

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

JavaScript

A

A high-level programming language used for adding interactivity and dynamic behavior to web pages.Example: console.log(“Hello, World!”); outputs “Hello, World!” to the browser console

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

HTTP (Hypertext Transfer Protocol)

A

A protocol for transmitting hypermedia documents, such as HTML, over the internet.Example: GET and POST are common HTTP methods used for requesting and submitting data, respectively.

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

URL (Uniform Resource Locator):

A

A reference to a web resource that specifies its location on a computer network and the mechanism for retrieving it.Example: https://www.example.com/page.html is a URL that points to a web page named “page.html” on the domain “example.com”.

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

DNS (Domain Name System)

A

A hierarchical decentralized naming system for computers, services, or other resources connected to the internet or a private network.Example: Resolves domain names (e.g., www.example.com) to IP addresses (e.g., 192.0.2.1).

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

Responsive Web Design

A

An approach to web design that ensures web pages render well on a variety of devices and window or screen sizes.Example: Using media queries in CSS to adjust layout based on screen width.

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

Semantic HTML

A

HTML elements that carry meaning, making it clear to developers and browsers what role each part of the content plays.Example: <header>, <nav>, <section>, <article>, <footer>.

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

CSS Box Model

A

A model that describes the layout and rendering of elements in CSS, consisting of content, padding, border, and margin.Example: box-sizing: border-box; includes padding and border in the element’s total width and height.

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

Responsive Images

A

Techniques used to ensure images adapt to different screen sizes and resolutions.Example: Using the srcset attribute to provide multiple image sources for different viewport sizes.

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

Web Accessibility

A

The inclusive practice of ensuring websites and web applications are usable by people of all abilities and disabilities.Example: Providing alternative text for images to assist users who are visually impaired.

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

SEO (Search Engine Optimization)

A

The process of optimizing websites to improve their visibility and ranking on search engine results pages (SERPs).Example: Using relevant keywords in page titles, headings, and meta tags.

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