Untitled Flashcards Set

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/20

flashcard set

Earn XP

Description and Tags

There are total 20 cards in tis deck

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards
The basic HTML page structure starts with __________.
Content
2
New cards
To create a bulleted list in HTML, use the __________ tag.
  • Item 1
  • Item 2
3
New cards
To link a CSS file to HTML, you use the __________ tag.
4
New cards
The HTML tag that makes text bold is __________.
Text
5
New cards
To create an email link in HTML, the tag used is __________.
6
New cards
In CSS, to set the text color to red, you would write __________.
p { color: red; }
7
New cards
The HTML tag for embedding a video is __________.
8
New cards
To create a form with a text box and a submit button, you can use __________.
9
New cards
To declare a JavaScript variable, you could use __________.
let x = 5;
10
New cards
To show an alert popup in JavaScript, you write __________.
alert("Hello!");
11
New cards
The DOM stands for __________.
Document Object Model = webpage structure.
12
New cards
To change text in an HTML element with id "demo", you use __________.
document.getElementById("demo").innerHTML = "New Text";
13
New cards
To hide an element with jQuery, you would write __________.
$("#id").hide();
14
New cards
The data format known as JSON can be represented as __________.
{ "name": "John" }
15
New cards
To add a comment in JavaScript, you use __________.
// This is a comment
16
New cards
In comparing JSON vs XML, JSON uses __________ while XML uses __________.
{key:value}, .
17
New cards
To output a message in HTML using JavaScript, you use __________.
document.write('message');
18
New cards
To create a hyperlink in HTML, you use the __________ tag.
19
New cards
To include an image in HTML, the tag is __________.
description
20
New cards
The CSS property to change the font size is __________.
font-size:
21
New cards
To specify a list in HTML that uses numbers, the tag is __________.
    .