WDD Implementation Flashcards
Complete the missing Tags
~~~
<html>
<head>
<1>This is shown in the tab<2>
</head>
<body>
This is where the main content of the page goes!
</body>
</html>
~~~
1 = <title> 2 = </title>
Complete the missing Tags
~~~
<html>
<head>
<title>This is shown in the tab</title>
</head>
<1>
This is where the main content of the page goes!
<2>
</html>
~~~
1 = <body> 2 = </body>
Complete the missing Tags
~~~
<html>
<1>
<title>This is shown in the tab</title>
<2>
<body>
This is where the main content of the page goes!
</body>
</html>
~~~
1 = <head> 2 = </head>
Complete the missing Tags
~~~
<1>
<head>
<title>This is shown in the tab</title>
</head>
<body>
This is where the main content of the page goes!
</body>
<2>
~~~
1 = <html> 2 = </html>
Write a line of HTML to create a large which heading says Bob’s Disco
<h1> Bob's Disco</h1>
What HTML tags would you used to create a paragraph?
<p></p>
Write HTML to create an external hyperlink to www.w3schools.com with the text Find out more
<a href="www.w3schools.com">Find out more</a>
1) Explain what this would this code do?<a href="www.bbc.co.uk">BBC Homepage</a>
2)What type of addressing has been used below?
1) The code would create an external hyperlink which could take you to the BBC webpage
2)Absolute Addressing
1) Explain what this would this code do?<a href="about.html">Find out about us!</a>
2)What type of addressing has been used below?
1) The code would create an internal hyperlink which could take you to the about webpage
2)Relative Addressing
Write HTML to create an internal hyperlink to the staff.html with the text Info about staff. The staff page is in a folder called people
<a href="people/staff.html">Info about staff</a>
Show what this could would look like on a webpage<a href="about.html">Find out about us!</a>
Find out about us!
What does this code do?
`<head>
<link></link>
</head>`
The <link>
tag is used to link to external CSS files.
Write the HTML to display an image of a photo at a size of 100 pixels by 100 pixels. The filename is “photo.png”
<img src='photo.png' width="100" height="100">
.
All graphic files for a website are stored in a folder called ‘images’ this folder is stored in the same file/location as the webpages.
Write the HTML to display the car.png image
<img src='images\car.png' >
What does controls do in video/audio tags?
controls: adds play, pause, volume controls
Write HTML code to play a MP3 audio file called “music” on a web page. The file is saved in the same folder as the webpage
<audio controls>
<source src="music.mp3" type="audio/mpeg">
</audio>