Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.17 KB

README.md

File metadata and controls

29 lines (23 loc) · 1.17 KB

HTML Scientific Paper

Welcome to the first exercise of the HTML series. In this exercise we are going to use the HTML elements you've learned about this morning to replicate the below web page:

Scientific Paper

Instructions

  • Start with the template in index.html
  • Add a <title> in the <head> of the HTML page
  • Use HTML elements like <header> and <section> to structure your code
  • Use HTML elements like <h1> and <em> to format the text
  • Use HTML elements like <img> and <a> with the correct attributes

Tips

  • Use indentation and nesting to organise your code and improve readability.
<section>
	<p>This paragraph is indented and nested inside the section element.</p>
</section>

Resources

Extension

  • Create a second page and link to it
  • Use five elements not listed above! Use MDN to find new elements you've not yet used.