Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save PatrickVienne/07154c45e52430334868868cf8352ff6 to your computer and use it in GitHub Desktop.
Save PatrickVienne/07154c45e52430334868868cf8352ff6 to your computer and use it in GitHub Desktop.
hw1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FakeBook</title>
</head>
<body>
<h1>This is my FakeBook Site</h1>
<div>div</div>
<!--
Tip: The <div> element is very often used together with CSS, to layout a web page.
Note: By default, browsers always place a line break before and after the <div> element.
However, this can be changed with CSS.
-->
<section>section</section>
<!--
The <section> tag defines sections in a document,
such as chapters, headers, footers, or any other sections of the document.
-->
<article>article</article>
<!--
The <article> tag specifies independent, self-contained content.
An article should make sense on its own and it should be possible to distribute it independently from the rest of the site.
Potential sources for the <article> element:
Forum post
Blog post
News story
Comment
-->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment