Website Development (Module SWDWD301) Practice Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/43

flashcard set

Earn XP

Description and Tags

These vocabulary flashcards cover the key concepts of Website Development including hardware skills, HTML5, CSS3, and design principles based on the Rwanda TVET Training Manual.

Last updated 11:46 PM on 7/7/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

44 Terms

1
New cards

Keyboard

An input device used to enter characters and functions into the computer system by pressing buttons or keys; it is the primary device used to enter text.

2
New cards

Keyboard Layout

Any specific physical, visual, or functional arrangement of the keys, legends, or key-meaning associations on a computer keyboard or mobile phone.

3
New cards

QWERTY

The first keyboard layout ever created, designed in the 1870s by Christopher Latham Sholes for typewriting machines.

4
New cards

AZERTY

A modified QWERTY layout used primarily for the French language to make typing easier by moving frequently used letters like 'A' to the first row.

5
New cards

Control keys (Special Function)

Keys used alone or in combination with others to perform certain actions, such as Ctrl, Alt, the Windows logo key, and Esc.

6
New cards

Function keys

Keys labeled F1 through F12 used to perform specific tasks, where functionality varies from program to program.

7
New cards

Navigation keys

Keys used for moving around in documents or webpages and editing text, including arrow keys, Home, End, Page Up, Page Down, Delete, and Insert.

8
New cards

Numeric keypad

A group of keys arranged in a block like a conventional calculator used for entering numbers quickly.

9
New cards

Cursor (Insertion Point)

A blinking vertical line that shows where the text being typed will begin.

10
New cards

Key combination

Also known as a keyboard shortcut or hotkey, it is a sequence of two or more keys pressed together to perform a specific function or command.

11
New cards

Typing

The process of writing or inputting text by pressing keys on a typewriter, computer keyboard, mobile phone, or calculator.

12
New cards

Touch typing

A method of typing on a computer keyboard without looking at the keys, involving the use of all ten fingers.

13
New cards

Ergonomics

The process of designing or arranging workplaces, products, and systems so that they fit the people who use them, enhancing performance, comfort, and safety.

14
New cards

Words Per Minute (WPM)

A measure of typing speed where a 'word' is defined as 55 characters or keystrokes, including spaces and punctuation.

15
New cards

Accuracy

A measurement of typing proficiency calculated by dividing the number of correct keystrokes by the total number of keystrokes made and multiplying by 100100..

16
New cards

Website

A related collection of web pages that are publicly accessible, share a single domain name, and are published on at least one web server.

17
New cards

Web page

A document written in hypertext (HTML) that is displayed in a web browser as a single page within a website.

18
New cards

Web browser

A software application that allows users to access and navigate web pages on the internet by retrieving resources from a web server and displaying them.

19
New cards

Search engine

Particular websites (e.g., Google, Bing, Yahoo) that provide search results that can be accessed via a web browser.

20
New cards

Text editor

A tool that allows a user to create and revise documents or write and modify HTML code on a computer.

21
New cards

Hyperlink

Also called a 'link,' it is an element that connects one web page to another web page, document, or resource.

22
New cards

URL (Uniform Resource Locator)

A web address or reference used to access specific resources on the internet, containing the protocol, domain name, and path.

23
New cards

HTML (Hypertext Markup Language)

The standard markup language for creating and structuring web page elements like sections, paragraphs, links, and media files.

24
New cards

Paired tags

HTML tags that require an opening tag to turn a formatting feature on and a closing tag (with a forward slash) to turn it off.

25
New cards

Unpaired tag (Singular Tag)

Stand-alone tags that take effect immediately without a closing tag, such as ,
, or


.

26
New cards

HTML Attribute

A piece of markup language written within an opening tag used to adjust the behavior, display, or properties of an HTML element.

27
New cards

Semantic Tags

Tags that clearly describe their meaning to both the browser and the developer (e.g.,

, ,
), enhancing SEO and accessibility.

28
New cards

Canvas

An HTML5 element used as a container to draw graphics, such as shapes or animations, on the fly via JavaScript.

29
New cards

SVG (Scalable Vector Graphics)

An XML-based markup language for creating two-dimensional vector graphics that are resolution-independent and can be scaled without losing quality.

30
New cards

Page Layout

The arrangement and organization of elements on a web page, including headers, navigation menus, content sections, and footers.

31
New cards

Website Optimization

The process of improving website performance in areas such as web traffic, conversion rates, loading speed, and usability.

32
New cards

SEO (Search Engine Optimization)

The practice of optimizing a website to improve its visibility and ranking on organic search engine results pages (SERPs).

33
New cards

Web accessibility

Designing websites and tools so that all people, including those with disabilities, can perceive, understand, navigate, and interact with the Web.

34
New cards

CSS (Cascading Style Sheets)

A style sheet language used for describing the presentation of a document written in HTML or XML, separating content from presentation.

35
New cards

Inline CSS

A styling method applied directly to a specific HTML element using the 'style' attribute.

36
New cards

Internal CSS

Styles placed within a

37
New cards

External CSS

A method where web pages are linked to a separate .css file, allowing the styling of an entire site at once.

38
New cards

CSS Selector

The part of a CSS syntax that describes and points to the HTML element(s) you want to style (e.g., element, ID, or class).

39
New cards

CSS Box Model

A concept that defines every HTML element as a box consisting of Content, Padding, Border, and Margin.

40
New cards

Typography

The art and technique of arranging letters and text to make the copy readable, clear, and visually appealing to the reader.

41
New cards

Typeface

A design style that comprises a family of related fonts of varying sizes and weights (e.g., Serif, Sans-serif).

42
New cards

Media Query

A CSS technique that applies styles to elements based on device characteristics like screen width, height, resolution, or orientation.

43
New cards

Breakpoint

Specific viewport widths (e.g., 768px for tablets) where a website's design changes to adapt to the screen size.

44
New cards

iframe

An 'Inline Frame' tag used to embed one HTML document within the current HTML document, creating a nested webpage.