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

Added new html tag #2

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
3 changes: 2 additions & 1 deletion example.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ <h2>Headings and paragraphs (this is an h2 heading)</h2>
<p>Paragraphs are separated using p tags. This automatically separates them into blocks, leaving a gap in between.</p>

<p>Within a paragraph you can make text <strong>bold</strong> or <em>italic</em>. In fact it's probably bad to think of these as bold and italic - instead you should genuinely consider them as 'strong' and 'emphasised' - you can decide exactly how to display them in you css, bold and italic are just the defaults. This is an example of <em>symantic markup</em>: you're adding information as to the interpretation of certain words, rather than dictating how they should be displayed.</p>


<hr> </hr> <!---for horizontal divider -->
<h2>Blank lines and void tags</h2>

<p>It is also possible to insert extra blank lines manually using the br tag. The br tag is a special type of tag (called a 'void tag'); you don't need a closing br tag, just un opening one.</p>
Expand Down