Merge pull request #23 from gipsi/master

Nu html checked
This commit is contained in:
Chris Bracco
2021-04-03 15:42:26 -04:00
committed by GitHub
2 changed files with 31 additions and 15 deletions

View File

@@ -7,11 +7,11 @@
</head> </head>
<body> <body>
<div id="top" class="page" role="document"> <div id="top" class="page" role="document">
<header role="banner"> <header>
<h1>HTML5 Test Page</h1> <h1>HTML5 Test Page</h1>
<p>This is a test page filled with common HTML elements to be used to provide visual feedback whilst building CSS systems and frameworks.</p> <p>This is a test page filled with common HTML elements to be used to provide visual feedback whilst building CSS systems and frameworks.</p>
</header> </header>
<nav role="navigation"> <nav>
<ul> <ul>
<li> <li>
<a href="#text">Text</a> <a href="#text">Text</a>
@@ -60,12 +60,12 @@
</li> </li>
</ul> </ul>
</nav> </nav>
<main role="main"> <main>
<section id="text"> <section id="text">
<header><h1>Text</h1></header> <header><h1>Text</h1></header>
<article id="text__headings"> <article id="text__headings">
<header> <header>
<h1>Headings</h1> <h2>Headings</h2>
</header> </header>
<div> <div>
<h1>Heading 1</h1> <h1>Heading 1</h1>
@@ -78,14 +78,25 @@
<footer><p><a href="#top">[Top]</a></p></footer> <footer><p><a href="#top">[Top]</a></p></footer>
</article> </article>
<article id="text__paragraphs"> <article id="text__paragraphs">
<header><h1>Paragraphs</h1></header> <header><h2>Paragraphs</h2></header>
<div> <div>
<p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p> <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
</div> </div>
<footer><p><a href="#top">[Top]</a></p></footer> <footer><p><a href="#top">[Top]</a></p></footer>
</article> </article>
<article id="text__blockquotes">
<header><h2>Blockquotes</h2></header>
<div>
<blockquote>
<p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
<p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
<cite><a href="#!">Said no one, ever.</a></cite>
</blockquote>
</div>
<footer><p><a href="#top">[Top]</a></p></footer>
</article>
<article id="text__lists"> <article id="text__lists">
<header><h1>Lists</h1></header> <header><h2>Lists</h2></header>
<div> <div>
<h3>Definition list</h3> <h3>Definition list</h3>
<dl> <dl>
@@ -194,14 +205,14 @@
<footer><p><a href="#top">[Top]</a></p></footer> <footer><p><a href="#top">[Top]</a></p></footer>
</article> </article>
<article id="text__hr"> <article id="text__hr">
<header><h1>Horizontal rules</h1></header> <header><h2>Horizontal rules</h2></header>
<div> <div>
<hr> <hr>
</div> </div>
<footer><p><a href="#top">[Top]</a></p></footer> <footer><p><a href="#top">[Top]</a></p></footer>
</article> </article>
<article id="text__tables"> <article id="text__tables">
<header><h1>Tabular data</h1></header> <header><h2>Tabular data</h2></header>
<table> <table>
<caption>Table Caption</caption> <caption>Table Caption</caption>
<thead> <thead>
@@ -256,7 +267,7 @@
<footer><p><a href="#top">[Top]</a></p></footer> <footer><p><a href="#top">[Top]</a></p></footer>
</article> </article>
<article id="text__code"> <article id="text__code">
<header><h1>Code</h1></header> <header><h2>Code</h2></header>
<div> <div>
<p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p> <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
<p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p> <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
@@ -273,7 +284,7 @@
<footer><p><a href="#top">[Top]</a></p></footer> <footer><p><a href="#top">[Top]</a></p></footer>
</article> </article>
<article id="text__inline"> <article id="text__inline">
<header><h1>Inline elements</h1></header> <header><h2>Inline elements</h2></header>
<div> <div>
<p><a href="#!">This is a text link</a>.</p> <p><a href="#!">This is a text link</a>.</p>
<p><strong>Strong is used to indicate strong importance.</strong></p> <p><strong>Strong is used to indicate strong importance.</strong></p>
@@ -297,7 +308,7 @@
<footer><p><a href="#top">[Top]</a></p></footer> <footer><p><a href="#top">[Top]</a></p></footer>
</article> </article>
<article id="text__comments"> <article id="text__comments">
<header><h1>HTML Comments</h1></header> <header><h2>HTML Comments</h2></header>
<div> <div>
<p>There is comment here: <!--This comment should not be displayed--></p> <p>There is comment here: <!--This comment should not be displayed--></p>
<p>There is a comment spanning multiple tags and lines below here.</p> <p>There is a comment spanning multiple tags and lines below here.</p>
@@ -309,7 +320,7 @@
</article> </article>
</section> </section>
<section id="embedded"> <section id="embedded">
<header><h1>Embedded content</h1></header> <header><h2>Embedded content</h2></header>
<article id="embedded__images"> <article id="embedded__images">
<header><h2>Images</h2></header> <header><h2>Images</h2></header>
<div> <div>
@@ -377,7 +388,7 @@
</article> </article>
</section> </section>
<section id="forms"> <section id="forms">
<header><h1>Form elements</h1></header> <header><h2>Form elements</h2></header>
<form> <form>
<fieldset id="forms__input"> <fieldset id="forms__input">
<legend>Input fields</legend> <legend>Input fields</legend>
@@ -537,8 +548,8 @@
</form> </form>
</section> </section>
</main> </main>
<footer role="contentinfo"> <footer>
<p>Made by <a href="https://twitter.com/cbracco">@cbracco</a>. Code on <a href="https://github.com/cbracco/html5-test-page">GitHub</a>.</p> <p>Made by <a href="http://twitter.com/cbracco">@cbracco</a>. Code on <a href="http://github.com/cbracco/html5-test-page">GitHub</a>.</p>
</footer> </footer>
</div> </div>
</body> </body>

5
package-lock.json generated Normal file
View File

@@ -0,0 +1,5 @@
{
"name": "html5-test-page",
"version": "0.8.0",
"lockfileVersion": 1
}