Lesson 1 Flashcards

1
Q

is the process of creating the
visual and functional aspects of websites. 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
2
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
3
Q

Key Components of Web Design

A

Layout
Color Scheme
Typography
Images and Graphics
Navigation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
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
5
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
6
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
7
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
8
Q

The system that allows 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
9
Q

Principles of Good Web Design

A

Simplicity
Consistency
Responsiveness
Accessibility
User-Centered Design

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
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
11
Q

Use consistent design elements, such as
colors, fonts, and layouts, to create a cohesive experience.

A

Consistency:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
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
13
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
14
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
15
Q

Example of a Bad Web Design

A

Bad Navigation
Outdated
Bad Fonts/Typography
Cluttered
No Mobile Responsiveness
Bad Color Scheme
No White Space
Confusing
Bad Visuals

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
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
17
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
18
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
19
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
20
Q

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

A

Content Management Systems (CMS)

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

Steps to Design a Website

A

Define the Purpose and Goals:
Research and Plan
Design
Develop
Test
Launch
Maintain

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

Understand the website’s
objectives and target audience.

A

Define the Purpose and Goals

23
Q

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

A

Research and Plan

24
Q

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

25
Q

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

26
Q

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

27
Q

Publish the website and promote it to the target audience

28
Q

Regularly update the content and fix any issues that arise

29
Q

is the standard language for creating webpages. It is used to structure content on the web and to add elements like text, images, links, and more.

A

HTML (HyperText Markup Language)

30
Q

HTML is not a programming language but a markup
language that defines the structure of web pages. (True or False)

31
Q

Websites are built using HTML, CSS, and
JavaScript, where HTML provides the content and
structure. (True or False)

32
Q

True or False (Basahin lang yan)

HTML allows us to display content on a web
browser, making it essential for any website.

It is the foundation of every webpage you
visit.

33
Q

Every HTML document starts and ends with
the <html> tag, and it contains several key
parts:

A

<!DOCTYPE html>

<html>
<head>
<meta></meta>
<title>Page Title</title>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is a simple paragraph.</p>
</body>
</html>

34
Q

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

A

<!DOCTYPE html>

35
Q

This is the root element that wraps the
entire HTML content.

A

<html>
</html>

36
Q

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

A

<head>
</head>

37
Q

Specifies the character
encoding to support different languages and
characters.

A

<meta></meta>

38
Q

The title of the webpage shown on the
browser tab.

A

<title>Page Title</title>

39
Q

This contains the content of the webpage
that will be visible to users.

A

<body>
</body>

40
Q

Header tags

A

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

41
Q

is the
largest heading

42
Q

is the smallest heading

43
Q

Paragraph tag for text

44
Q

Bold text.

45
Q

Italic text

46
Q

Underlined text

47
Q

Used to create hyperlinks.

A

<a>Link text</a>

48
Q

Embeds an image into the webpage.

A

<img></img>

49
Q

purpose of alt

A

provides alternative text for images when they can’t be displayed

50
Q

Unordered List example

A

<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>

51
Q

Ordered List example

A

<ol>
<li>First item</li>
<li>Second item</li>
</ol>

52
Q

Used to create tables.

A

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

53
Q

Tables examples

A

<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>John</td>
<td>25</td>
</tr>
</table>

OUPUT
Name Age (naka bold since TH)
John 25 (Not Bold)