Lesson 1- Introduction to Web Design Flashcards

1
Q

The PROCESS of creating the visual and functional aspects of websites

A

WEB DESIGN

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

It involves planning, conceptualizing, and arranging content intended for the internet

A

WEB DESIGN

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

_______ goes beyond aesthetics to include the website’s overall functionality

A

Modern Web Design

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

KEY COMPONENTS OF WEB DESIGN(5)

A

(LCT IN)

Layout
Color Scheme
Typography
Images and Graphics
Navigation

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

The ARRANGEMENT OF ELEMENTS ON A WEBPAGE, including headers, footers, navigation menus, and content areas.

A

LAYOUT

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

The SELECTION OF COLORS used throughout the website to create a cohesive and visually appealing look.

A

COLOR SCHEME

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

The CHOICE OF FONTS AND TEXT STYLES to ensure readability and enhance the website’s aesthetic

A

TYPOGRAPHY

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

the USE OF PHOTOS, ILLUSTRATIONS, ICONS, AND OTHER VISUAL ELEMENTS to support content and engage users.

A

IMAGES AND GRAPHICS

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

The SYSTEM THAT ALLOW USERS TO MOVE THROUGH THE WEBSITE, including menus, links, and buttons

A

NAVIGATION

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

Principles of Good Web Design(5)

A

(SCRAU)

Simplicity
Consistency
Responsiveness
Accessibility
User-Centered Design

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

Keep the design clean and uncluttered to make it easy for users to navigate and find information

A

SIMPLICITY

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

Use consistent design elements, such as colors, fonts, and layout, to create experience

A

Consistency

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

Ensure the website looks and functions well on various devices, including desktops, tablets, and smartphones

A

Responsiveness

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

Design the website to be usable by people with disabilities, following guidelines such as the Web Content Accessibility Guidelines(WCAG)

A

Accessibility

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

Focus on the needs and preferences of the target audience to create a user- friendly experience.

A

User-Centered Design

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

Examples of a Bad Web Design

A

(POSS BBS CS)

Poor Navigation
Outdated
Small Fonts
Slow Website Speed
Bad Mobile Responsiveness
Bad Color Scheme
Spacing Issues
Confusing
Small Visuals

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

Tool and Technologies(5)

A

(HSJ WC)

HTML(HyperText Markup Language)
CSS(Cascading Style Sheets)
JavaScript
Web Design Software
Content Management Systems(CMS)

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

The standard language for creating web pages

A

HTML (HyperText Markup Language)

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

Used to style and layout web pages

A

CSS(Cascading Style Sheets)

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

A programming language that adds interactivity to websites

A

JavaScript

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

Tools like Adobe XD, Figma, and Sketch for designing and prototyping websites

A

Web Design Software

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

Platforms like WordPress, Joomla, and Drupal for building and managing websites

A

Content Management Systems(CMS)

23
Q

Steps to Design a Website

A

(DRD DTL M)
Define the Purpose and Goals
Research and Plan
Design
Develop
Test
Launch
Maintain

24
Q

Understand the website’s objectives and target audience

A

Define the Purpose and Goals

25
Q

Conduct research on competitors and gather inspiration. Create a sitemap and wireframes

A

Research and Plan

26
Q

Develop the visual elements, including layout, color scheme, typography, and graphics

27
Q

Write the HTML, CSS, and JavaScript code to build the website

28
Q

Check the website for functionality, usability, and compatibility across different devices and browsers

29
Q

Publish the website and promote it to the target audience

30
Q

Regularly update the content and fix and issues that arise

31
Q

Is the standard language for creating web pages

A

HTML(HyperText Markup Language)

32
Q

HTML is use to create the ____ on the web and to add elements like text, images, links, and more

33
Q

T or F
HTML is a programming language

A

F

its a markup language that defines the structure of web pages

34
Q

Websites are built using HTML, CSS, and
JavaScript, where HTML provides the
content and _______

35
Q

It is the foundation of every webpage

36
Q

Every HTML document starts and ends
with the _________ tag

A

<html>
</html>

37
Q

Declares the document type and version of HTML being used(HTML5)

A

<!DOCTYPE html>

38
Q

This is the root element that wraps the entire HTML content

A

<html>
</html>

39
Q

Contains metadate (e.g., title, character encoding) and is not directly visible on the page

A

<head>
</head>

40
Q

Specifies the character encoding to support different languages and character

A

<meta charset=”UTF-8”

41
Q

The title of the webpage shown on the browser tab

A

<title>
</title>

42
Q

This contain the content of the webpage that will be visible to users

A

<body>
</body>

43
Q

HTML Document Structure(6)

A

<!DOCTYPE html>

<html>
<head>
<meta></meta>
<title>
<body>
</body></title></head></html>

44
Q

Text Formatting Tags(5)

A

<h1> to <h6>
<p>
<b>
<i>
<u>
</u></i></b></p></h6></h1>

45
Q

Header tag

A

<h1> to <h6>
</h6></h1>

46
Q

Paragraph tag for text

47
Q

Bold text

48
Q

Italic text

49
Q

Underline text

50
Q

Used to create hyperlinks. Linking and Anchors

A

<a>Link text</a>

51
Q

Images. Embeds an image into the webpage

A

<image>
</image>

52
Q

Lists tags(2)

A

Unordered List<ul>
Ordered List<ol>

53
Q

Table tags(4)

A

<table>
<tr>
<td>
<th>
</th></td></tr></table>