Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

09 formatting text index.html #170

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions exercises/09-formatting-Text/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@
</head>
<body>
<!-- your code here -->
<h1> This will be your heading</h1>
<p>Then, you start talking about some interesting stuff that nobody wants to read</p>
<p>Then you can quote someone to add credibility:</p>
<blockquote>
A quotation is a handy thing to have about, saving one the trouble of thinking
<br />
-A.A.Milne, If I May
</blockquote>
<p>After all, new generations have these things in common:</p>
<ul>
<li>Don't like to read long texts.</li>
<li>Have the attention span of a bird.</li>
<li>Skip long paragraphs straight to the bullet points.</li>

</body>
</html>