Home
Explore
Exams
Search for anything
Login
Get started
Home
Engineering
Computer Science
HTML/CSS
5.0
(1)
Rate it
Studied by 13 people
Learn
Practice Test
Spaced Repetition
Match
Flashcards
Card Sorting
1/42
Earn XP
Description and Tags
Computer Science
11th
Add tags
Study Analytics
All
Learn
Practice Test
Matching
Spaced Repetition
Name
Mastery
Learn
Test
Matching
Spaced
No study sessions yet.
43 Terms
View all (43)
Star these 43
1
New cards
Where do you add the code to add the title (the tab at the top) into your HTML page?
2
New cards
and
are examples of what?
Tags
3
New cards
What is the full intro tag to an HTML document?
4
New cards
Tag for adding an image?
5
New cards
What symbols indicate that text is a comment and not actual code?
6
New cards
All code that will show up goes between these tags…
7
New cards
Which symbol indicates a closing tag in HTML?
/
8
New cards
Numbered list?
9
New cards
Bulleted list
10
New cards
List item
11
New cards
What's the difference between the headings h1 - h6?
The lower the number the bigger the heading.
12
New cards
What does rgb stand for?
Red, green, blue
13
New cards
What's the highest value of an rgb number?
255
14
New cards
How can you add a hyperlink to your site?
My link
15
New cards
What's the relationship between HTML and CSS?
HTML adds the content and structure. CSS adds the style.
16
New cards
The container for all of the HTML markup?
17
New cards
Contains the information about the webpage. Does not show in the webpages.
18
New cards
The text to display on the browser tab.
19
New cards
The container for the content that will be displayed on the webpage.
20
New cards
The biggest heading.
21
New cards
A subheading - the second biggest.
22
New cards
A paragraph
23
New cards
Bold text
24
New cards
Italic or emphasized text
25
New cards
Hyperlinked text.
a link to Google
26
New cards
A single bullet in a list.
27
New cards
A container for a bullet-point list.
28
New cards
A container for a numbered list.
29
New cards
Creates a table
30
New cards
table row
31
New cards
Defines a cell in a table
32
New cards
Defines a header cell in a table
33
New cards
\n What is the attribute?
href
34
New cards
\n What is the element?
a
35
New cards
\n What is the tag>
36
New cards
\n What is the value?
"www.killingit.com"
37
New cards
These modify properties of an HTML tag…
attribute
38
New cards
This links the style sheet…
39
New cards
How to make a class
40
New cards
How to put a class in the style sheet
.top-img {
height: 50px;
border-radius: 5px;
margin: 10px;
border-style: dotted;
border-color: cadetblue;
}
****you put a . in front before****
41
New cards
The id attribute
Is used to single out just one element for a rule-set.
42
New cards
How to implement an id attribute
43
New cards
How to put the id in the style-sheet
\#notes {
float: right;
width: 100px;
background-color: white;
box-shadow: 6px 6px gray;
}
**you put a # in front before**