Midterm Flashcards

1
Q

What is the impact of browser war

A

HTML become complex and fragmented

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

What are 3 selectors in CSS

A
  1. Element selector: p{…}
  2. Class selector: .button{…}
  3. ID selector: #head
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does the web server store

A

Web pages (HTML, css document), media file, database data

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

Example of an attribute in html element

A

<a>Click Here!</a>
<img></img>

<div> </div>

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

Change bullet style in nested list

A

<style>

    ul {
        list-style-type: square; /* Change to a different value like "disc" or "circle" */
    }
</style>

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

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

How to upload your website file to become a website

A

After choosing a web hosting provider, domain, you use FTP (File transfer protocol) client like Filezilla

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

What is “font-weight” in p{font-weight: bold;}

A

CSS Property

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

Why are title tag important

A

Easy to search, keep track tab in browser, bookmarking

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

3 layers of Web Design

A

Structural (Html)
Presentation (CSS)
Behaviour (Js)

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

Disadvantage of free hosting

A

Limited resource and feature, less control, appear as subdomain of provider

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

What can be find in the <header> section

A

Title, meta tag, link to stylesheet or image, style tag

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

Table syntax

A

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

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

Styling a box

A

.box{
width: 280px;
border: 2px solid black;
margin: top right bot left;
padding: 10px;
}

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

What is IP address

A

Unique number for every device using Internet Protocol network.
Use: Device identification, efficient routing

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