web programming Flashcards

1
Q

HTML structure

A

<!DOCTYPE html>

<html>
<head>
</head> // The <head> element is a container for metadata
<body>
</body>
</html>

<title> - defines title of document
<p> paragraph
<br></br> produces line break
<h1>-<h6> section headings
</h6></h1></p></title></head></html>

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

Links

A

<a>Visit Loughborough University website</a>

OR

<a>Visit Loughborough University website</a> // displays page on new tab

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

id and class

A

<a>Visit Lboro</a>

<a>Visit Lboro</a>

<p> This is a paragraph.</p>

<p> This is a paragraph.</p
</p>

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

making page reactive 1st step. Put in Head

A

<meta></meta>

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

Inserting images

A

<img></img>

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

Bullet points

A

<ul>
<li> description </li>
</ul>

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

Tables

A

<table>
</table>

<tr> // Creates a row
<td> stores info in that row
<th> table header

also use <thead>, <tbody> and <tfoot>
<td>info</td> // colspan defines number of columns a cell should extend
</tfoot></tbody></thead></th></td></tr>

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

div

A

The <div> tag is a container that is used to define a division or a section

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

input

A

<input></input> https://www.w3schools.com/html/html_form_input_types.asp all input types

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

iframe

A

The <iframe> tag specifies an inline frame for embedding another document within the current HTML document

<iframe></iframe>

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

Inline CSS

A

uses style attribute to a single html element
e.g <body style ="background-color: skyblue;">

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

Internal CSS

A

defined in the <head> section of an HTML page, within a <style> element</style>

used on classes, ids

e.g

<style>

#main-header {
background-color: lightblue; }

.module {
background-color: purple; }

<h1 id="main-header">
<h2 class="module">
</style>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Selectors more info

A

https://www.w3schools.com/cssref/css_selectors.php

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

Every box is composed of

A

Content: The content of the box is where text and images appear
* Padding: Clears an area around the content. The padding is transparent
* Border: A border that goes around the padding and content
* Margin: Clears an area outside the border. The margin is transparent

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

CSS box sizing

A

Say we have two div containers
if we do

.div1,.div2{box-sizing: border-box;} in styleing

they become same size

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

Positioning

A

static. HTML elements are positioned static by default. it is always positioned according to the normal flow of the page.

  1. relative. An element with “position: relative” is positioned relative to its normal position

fixed. An element with position: fixed; is positioned relative to the viewport, which means it always stays in the same place even if the page is scrolled

absolute. The absolutely positioned element is positioned relative to its nearest ancestor that is not static. If a positioned ancestor doesn’t exist, it uses the document body

17
Q

float

A

places element on right or left side of container allowing text to wrap around

18
Q

Responsive web page development

A

Using <meta></meta> viewport element
o Using Media Query technique
o Set width property to a percentage
o Using max-width and min-width

@media (max-width: 600px) {
article{ width:100%; }
body {background-color: blue; }
}

19
Q

Flexbox (RWD)

A

items in a container
set display : flex;
flex-wrap: wrap;

actual div elemtns
flex: 300px;

20
Q

javascript function

21
Q

getting input

A

<div></div>

<script>
let name = window.prompt("Please enter your name:");
document.getElementById("output").innerHTML = "Hello " + name;
</script>
22
Q

declaring variables

A

let a, b, c; // to store string
const // cannot be changed
var// to store numbers

23
Q

backticks

A

With backticks, you can embed variables and expressions directly within a string
e.g
let name = “Alex”;
let num = 10;
let message = Hello ${name}! You're number ${num}.;

24
Q

Conditional statements

A

if (condition) {
// code block
} else {
// code block
}

Shorthand
let age = 20;
let canDrive = age >= 18 ? “Old enough”:”Too young”;

25
Q

Function expression

A

const sumFunction = function (a,b) {
return a + b;
};
OR arrow Expression
const sumFunction = (a,b) =>{return a + b;};

26
Q

Self invoking functions

A

self-invoking function executes immediately after it is defined

<script>
let userName = "Adam";
	((name) => {
		console.log(`Welcome, ${name}!`);
	})(userName);
</script>
27
Q

Callback function

A

A callback function is a function passed into another function as an argument

28
Q

Callback Function & Asynchronous Programming

A

function fetchData(url ) {
// 1. Makes a request to url to get data
// 2. If the response was successful, stores received data to collectedData variable}
// 3. Execute callback:
callback(collectedData);

function analyseData(result) {
// Do something with results
}
// Do something
fetchData(‘https://data.police.uk/api/crimes-street/all-crime’,analyseData);// Do something else

29
Q

Asynchronous Programming

A

fetch(link) - initiates a http request to specified link

.then((response)=>response.json()): Once the response is received from the server, this line of code processes the response. It takes the response object and calls its .json() method.

.catch(err => alert(err)); // if fetch fails it will show an error alert

const link = “https://data.police.uk/api/crime-categories?date=2024 06”

	fetch(link)
	.then((response)=>response.json())
	.then((data)=>console.log(data))
	.catch(err => alert(err)); 

or

use async function getData(){
response= await fetch(link)
data = await response.json