Section 1

Preview this deck

.js

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (18)

Section 1

(18 cards)

.js

Front

Javascript programs are stored in files that end in this extension.

Back

<title> </title>

Front

Title tags. The title of the webpage goes inside these tags. This will appear in the title bar of the browser.

Back

<br>

Front

Break tag. This tag inserts a line break

Back

<b> </b>

Front

Bold tag. Text inside these tags will be bold.

Back

<body> </body>

Front

The body of the webpage goes inside these HTML tags.

Back

Tags

Front

HTML instructions are coded in these, they are words or letters inside "<>" symbols.

Back

<html> </html>

Front

The very first and last tags in an HTML document.

Back

var myDog = ['dog', 'cat']

Front

A Javascript instruction that sets a variable called "myDog" to a list of values.

Back

HTML

Front

Hyper Text Markup Language. It describes the structure of Web pages.

Back

Javascript

Front

A programming language often used to add interactive features to a website.

Back

<a href="url"> click to visit page url </a>

Front

Hyperlink tag, also called anchor tag. This tag defines a hyperlink. This will be a clickable element on the webpage.

Back

CSS

Front

Cascading Style Sheet. This file defines all the colours and fonts used on the webpage

Back

background-color: <colour-name or value>;

Front

Background Colour attribute. In the CSS file, this defines the colour of the background

Back

index.html

Front

The standard file name for the HTML home page of a website, it often contains links to all the other pages.

Back

<p> </p>

Front

Paragraph tags. Enclose each paragraph in this pair of tags.

Back

<head> </head>

Front

Header tags. These tags enclose the header information at the top of a webpage. Inside here we would put the title and meta tags.

Back

<h1> </h1>

Front

Heading 1 tags. Put the top headings inside these tags.

Back

<img src="image.file.name" width="nnn">

Front

Image tag. This tag inserts an image.

Back