Created
June 9, 2018 07:29
-
-
Save PatrickVienne/07154c45e52430334868868cf8352ff6 to your computer and use it in GitHub Desktop.
hw1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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