html-test
Version:
Node.js library for testing HTML files on the fly and output errors in the console with Gulp.js compatibilities
1,107 lines (1,099 loc) • 522 kB
HTML
<!-- <!doctype html> -->
<html lang="en" class="no-js">
<head>
<title>Home</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<meta name="description" content="HTML layer with JS bundler for classical templates development.">
<link href="https://example.com/" rel="canonical">
<!-- Preload Google Fonts -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" type="text/css" as="style" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<!-- Fonts Preloading / Caching -->
<link rel="preload" href="./fonts/omk1-r.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<!-- Favicons -->
<link rel="icon" href="./favicons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicons/favicon-16x16.png">
<link rel="mask-icon" href="./favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#121630">
<meta name="msapplication-TileImage" content="./favicons/mstile-150x150.png">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="./favicons/site.webmanifest">
<!-- Twitter Card Basic -->
<meta name="twitter:card" content="summary">
<!-- Twitter Card additional items -->
<meta name="twitter:site" content="@publisher_handle">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description less than 200 characters">
<meta name="twitter:creator" content="@author_handle">
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image" content="./favicons/favicon-120x120.jpg">
<!-- Open Graph (Facebook, Pinterest & Google+) -->
<meta property="og:title" content="Title Here" />
<meta property="og:url" content="http://www.example.com/" />
<meta property="og:description" content="Description Here" />
<meta property="og:image" content="http://example.com/image.jpg" /> <!-- 1200x630 -->
<meta property="og:type" content="site" />
<!-- Open Graph additional items -->
<meta property="og:site_name" content="Short Site Name" />
<meta property="fb:admins" content="Facebook numeric ID" />
<!-- Styles -->
<link href="./styles/main.css" rel="stylesheet" media="all">
</head>
<body>
<!-- When JavaScript isn't available -->
<noscript>
<p>Sorry, but Page should display some content when JavaScript is <a href="//goo.gl/koeeaJ">enabled</a>.</p>
</noscript>
<!-- Navigation -->
<nav class="nav">
<!-- Main Menu -->
<ul class="menu">
<li class="menu__item">
<a class="menu__link" href="./index.html"></a>
</li>
</ul>
</nav>
<div>fsdfr
<!-- Header -->
<header class="header">
<div class="container">
<!-- Logo -->
<div class="logo">
<a class="logo__link" href="./index.html" accesskey="1"><img src="./images/" alt=""></a>
</div>
</div>
</header>
<!-- Intro -->
<section class="section">
<div class="container">
<div class="row">
<!-- Article -->
<div class="col-md-8">
<article class="article">
<h2>Article Title</h2>
<p class="subtitle" role="doc-subtitle">Subtitle</p>
<!-- SVG Block -->
<h3>SVG Block Test</h3>
<img src="./images/html5-logo.svg" alt="" width="200" height="200">
<!-- Picture Block -->
<h3>Picture Block Test</h3>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<!-- Picture Block | Figure Test -->
<h3>Picture Block Test | Figure</h3>
<figure>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption>
</figure>
<!-- Picture Block | Source 2x Test -->
<h3>Picture Block Test | 2x Source</h3>
<picture>
<source srcset="./images/test-image-3.webp 1x, ./images/test-image-3@2x.webp 2x" type="image/webp">
<img loading="eager" srcset="./images/test-image-3.jpg 1x, ./images/test-image-3@2x.jpg 2x" src="./images/test-image-3.jpg" alt=" | Logo" width="400" height="283">
</picture>
<!-- Quotations -->
<h3>Quotations</h3>
<figure>
<blockquote> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </blockquote>
<figcaption><cite>Edsger Dijkstra</cite></figcaption>
</figure>
<blockquote>
<q> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </q>
<p>
<cite>Edsger Dijkstra</cite>
</p>
</blockquote>
</article>
</div>
<!-- Aside -->
<div class="col-md-4">
<aside class="aside">
<h2>Aside</h2>
</aside>
</div>
</div><!-- /.row -->
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<!-- Social Navigation -->
<nav class="nav-social">
<ul class="social-menu">
<li class="social-menu__item">
<a href="./index.html" class="social-menu__link" target="_blank" title="Social Link" rel="noopener"></a>
</li>
</ul>
</nav>
</div>
</footer>
<!-- Vendor Scripts -->
<!-- Custom Scripts -->
<script src="./javascript/app.js"></script>
</body>
</html><!-- <!doctype html> -->
<html lang="en" class="no-js">
<head>
<title>Home</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<meta name="description" content="HTML layer with JS bundler for classical templates development.">
<link href="https://example.com/" rel="canonical">
<!-- Preload Google Fonts -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" type="text/css" as="style" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<!-- Fonts Preloading / Caching -->
<link rel="preload" href="./fonts/omk1-r.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<!-- Favicons -->
<link rel="icon" href="./favicons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicons/favicon-16x16.png">
<link rel="mask-icon" href="./favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#121630">
<meta name="msapplication-TileImage" content="./favicons/mstile-150x150.png">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="./favicons/site.webmanifest">
<!-- Twitter Card Basic -->
<meta name="twitter:card" content="summary">
<!-- Twitter Card additional items -->
<meta name="twitter:site" content="@publisher_handle">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description less than 200 characters">
<meta name="twitter:creator" content="@author_handle">
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image" content="./favicons/favicon-120x120.jpg">
<!-- Open Graph (Facebook, Pinterest & Google+) -->
<meta property="og:title" content="Title Here" />
<meta property="og:url" content="http://www.example.com/" />
<meta property="og:description" content="Description Here" />
<meta property="og:image" content="http://example.com/image.jpg" /> <!-- 1200x630 -->
<meta property="og:type" content="site" />
<!-- Open Graph additional items -->
<meta property="og:site_name" content="Short Site Name" />
<meta property="fb:admins" content="Facebook numeric ID" />
<!-- Styles -->
<link href="./styles/main.css" rel="stylesheet" media="all">
</head>
<body>
<!-- When JavaScript isn't available -->
<noscript>
<p>Sorry, but Page should display some content when JavaScript is <a href="//goo.gl/koeeaJ">enabled</a>.</p>
</noscript>
<!-- Navigation -->
<nav class="nav">
<!-- Main Menu -->
<ul class="menu">
<li class="menu__item">
<a class="menu__link" href="./index.html"></a>
</li>
</ul>
</nav>
<div>fsdfr
<!-- Header -->
<header class="header">
<div class="container">
<!-- Logo -->
<div class="logo">
<a class="logo__link" href="./index.html" accesskey="1"><img src="./images/" alt=""></a>
</div>
</div>
</header>
<!-- Intro -->
<section class="section">
<div class="container">
<div class="row">
<!-- Article -->
<div class="col-md-8">
<article class="article">
<h2>Article Title</h2>
<p class="subtitle" role="doc-subtitle">Subtitle</p>
<!-- SVG Block -->
<h3>SVG Block Test</h3>
<img src="./images/html5-logo.svg" alt="" width="200" height="200">
<!-- Picture Block -->
<h3>Picture Block Test</h3>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<!-- Picture Block | Figure Test -->
<h3>Picture Block Test | Figure</h3>
<figure>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption>
</figure>
<!-- Picture Block | Source 2x Test -->
<h3>Picture Block Test | 2x Source</h3>
<picture>
<source srcset="./images/test-image-3.webp 1x, ./images/test-image-3@2x.webp 2x" type="image/webp">
<img loading="eager" srcset="./images/test-image-3.jpg 1x, ./images/test-image-3@2x.jpg 2x" src="./images/test-image-3.jpg" alt=" | Logo" width="400" height="283">
</picture>
<!-- Quotations -->
<h3>Quotations</h3>
<figure>
<blockquote> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </blockquote>
<figcaption><cite>Edsger Dijkstra</cite></figcaption>
</figure>
<blockquote>
<q> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </q>
<p>
<cite>Edsger Dijkstra</cite>
</p>
</blockquote>
</article>
</div>
<!-- Aside -->
<div class="col-md-4">
<aside class="aside">
<h2>Aside</h2>
</aside>
</div>
</div><!-- /.row -->
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<!-- Social Navigation -->
<nav class="nav-social">
<ul class="social-menu">
<li class="social-menu__item">
<a href="./index.html" class="social-menu__link" target="_blank" title="Social Link" rel="noopener"></a>
</li>
</ul>
</nav>
</div>
</footer>
<!-- Vendor Scripts -->
<!-- Custom Scripts -->
<script src="./javascript/app.js"></script>
</body>
</html><!-- <!doctype html> -->
<html lang="en" class="no-js">
<head>
<title>Home</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<meta name="description" content="HTML layer with JS bundler for classical templates development.">
<link href="https://example.com/" rel="canonical">
<!-- Preload Google Fonts -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" type="text/css" as="style" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<!-- Fonts Preloading / Caching -->
<link rel="preload" href="./fonts/omk1-r.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<!-- Favicons -->
<link rel="icon" href="./favicons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicons/favicon-16x16.png">
<link rel="mask-icon" href="./favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#121630">
<meta name="msapplication-TileImage" content="./favicons/mstile-150x150.png">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="./favicons/site.webmanifest">
<!-- Twitter Card Basic -->
<meta name="twitter:card" content="summary">
<!-- Twitter Card additional items -->
<meta name="twitter:site" content="@publisher_handle">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description less than 200 characters">
<meta name="twitter:creator" content="@author_handle">
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image" content="./favicons/favicon-120x120.jpg">
<!-- Open Graph (Facebook, Pinterest & Google+) -->
<meta property="og:title" content="Title Here" />
<meta property="og:url" content="http://www.example.com/" />
<meta property="og:description" content="Description Here" />
<meta property="og:image" content="http://example.com/image.jpg" /> <!-- 1200x630 -->
<meta property="og:type" content="site" />
<!-- Open Graph additional items -->
<meta property="og:site_name" content="Short Site Name" />
<meta property="fb:admins" content="Facebook numeric ID" />
<!-- Styles -->
<link href="./styles/main.css" rel="stylesheet" media="all">
</head>
<body>
<!-- When JavaScript isn't available -->
<noscript>
<p>Sorry, but Page should display some content when JavaScript is <a href="//goo.gl/koeeaJ">enabled</a>.</p>
</noscript>
<!-- Navigation -->
<nav class="nav">
<!-- Main Menu -->
<ul class="menu">
<li class="menu__item">
<a class="menu__link" href="./index.html"></a>
</li>
</ul>
</nav>
<div>fsdfr
<!-- Header -->
<header class="header">
<div class="container">
<!-- Logo -->
<div class="logo">
<a class="logo__link" href="./index.html" accesskey="1"><img src="./images/" alt=""></a>
</div>
</div>
</header>
<!-- Intro -->
<section class="section">
<div class="container">
<div class="row">
<!-- Article -->
<div class="col-md-8">
<article class="article">
<h2>Article Title</h2>
<p class="subtitle" role="doc-subtitle">Subtitle</p>
<!-- SVG Block -->
<h3>SVG Block Test</h3>
<img src="./images/html5-logo.svg" alt="" width="200" height="200">
<!-- Picture Block -->
<h3>Picture Block Test</h3>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<!-- Picture Block | Figure Test -->
<h3>Picture Block Test | Figure</h3>
<figure>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption>
</figure>
<!-- Picture Block | Source 2x Test -->
<h3>Picture Block Test | 2x Source</h3>
<picture>
<source srcset="./images/test-image-3.webp 1x, ./images/test-image-3@2x.webp 2x" type="image/webp">
<img loading="eager" srcset="./images/test-image-3.jpg 1x, ./images/test-image-3@2x.jpg 2x" src="./images/test-image-3.jpg" alt=" | Logo" width="400" height="283">
</picture>
<!-- Quotations -->
<h3>Quotations</h3>
<figure>
<blockquote> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </blockquote>
<figcaption><cite>Edsger Dijkstra</cite></figcaption>
</figure>
<blockquote>
<q> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </q>
<p>
<cite>Edsger Dijkstra</cite>
</p>
</blockquote>
</article>
</div>
<!-- Aside -->
<div class="col-md-4">
<aside class="aside">
<h2>Aside</h2>
</aside>
</div>
</div><!-- /.row -->
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<!-- Social Navigation -->
<nav class="nav-social">
<ul class="social-menu">
<li class="social-menu__item">
<a href="./index.html" class="social-menu__link" target="_blank" title="Social Link" rel="noopener"></a>
</li>
</ul>
</nav>
</div>
</footer>
<!-- Vendor Scripts -->
<!-- Custom Scripts -->
<script src="./javascript/app.js"></script>
</body>
</html><!-- <!doctype html> -->
<html lang="en" class="no-js">
<head>
<title>Home</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<meta name="description" content="HTML layer with JS bundler for classical templates development.">
<link href="https://example.com/" rel="canonical">
<!-- Preload Google Fonts -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" type="text/css" as="style" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<!-- Fonts Preloading / Caching -->
<link rel="preload" href="./fonts/omk1-r.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<!-- Favicons -->
<link rel="icon" href="./favicons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicons/favicon-16x16.png">
<link rel="mask-icon" href="./favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#121630">
<meta name="msapplication-TileImage" content="./favicons/mstile-150x150.png">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="./favicons/site.webmanifest">
<!-- Twitter Card Basic -->
<meta name="twitter:card" content="summary">
<!-- Twitter Card additional items -->
<meta name="twitter:site" content="@publisher_handle">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description less than 200 characters">
<meta name="twitter:creator" content="@author_handle">
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image" content="./favicons/favicon-120x120.jpg">
<!-- Open Graph (Facebook, Pinterest & Google+) -->
<meta property="og:title" content="Title Here" />
<meta property="og:url" content="http://www.example.com/" />
<meta property="og:description" content="Description Here" />
<meta property="og:image" content="http://example.com/image.jpg" /> <!-- 1200x630 -->
<meta property="og:type" content="site" />
<!-- Open Graph additional items -->
<meta property="og:site_name" content="Short Site Name" />
<meta property="fb:admins" content="Facebook numeric ID" />
<!-- Styles -->
<link href="./styles/main.css" rel="stylesheet" media="all">
</head>
<body>
<!-- When JavaScript isn't available -->
<noscript>
<p>Sorry, but Page should display some content when JavaScript is <a href="//goo.gl/koeeaJ">enabled</a>.</p>
</noscript>
<!-- Navigation -->
<nav class="nav">
<!-- Main Menu -->
<ul class="menu">
<li class="menu__item">
<a class="menu__link" href="./index.html"></a>
</li>
</ul>
</nav>
<div>fsdfr
<!-- Header -->
<header class="header">
<div class="container">
<!-- Logo -->
<div class="logo">
<a class="logo__link" href="./index.html" accesskey="1"><img src="./images/" alt=""></a>
</div>
</div>
</header>
<!-- Intro -->
<section class="section">
<div class="container">
<div class="row">
<!-- Article -->
<div class="col-md-8">
<article class="article">
<h2>Article Title</h2>
<p class="subtitle" role="doc-subtitle">Subtitle</p>
<!-- SVG Block -->
<h3>SVG Block Test</h3>
<img src="./images/html5-logo.svg" alt="" width="200" height="200">
<!-- Picture Block -->
<h3>Picture Block Test</h3>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<!-- Picture Block | Figure Test -->
<h3>Picture Block Test | Figure</h3>
<figure>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption>
</figure>
<!-- Picture Block | Source 2x Test -->
<h3>Picture Block Test | 2x Source</h3>
<picture>
<source srcset="./images/test-image-3.webp 1x, ./images/test-image-3@2x.webp 2x" type="image/webp">
<img loading="eager" srcset="./images/test-image-3.jpg 1x, ./images/test-image-3@2x.jpg 2x" src="./images/test-image-3.jpg" alt=" | Logo" width="400" height="283">
</picture>
<!-- Quotations -->
<h3>Quotations</h3>
<figure>
<blockquote> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </blockquote>
<figcaption><cite>Edsger Dijkstra</cite></figcaption>
</figure>
<blockquote>
<q> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </q>
<p>
<cite>Edsger Dijkstra</cite>
</p>
</blockquote>
</article>
</div>
<!-- Aside -->
<div class="col-md-4">
<aside class="aside">
<h2>Aside</h2>
</aside>
</div>
</div><!-- /.row -->
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<!-- Social Navigation -->
<nav class="nav-social">
<ul class="social-menu">
<li class="social-menu__item">
<a href="./index.html" class="social-menu__link" target="_blank" title="Social Link" rel="noopener"></a>
</li>
</ul>
</nav>
</div>
</footer>
<!-- Vendor Scripts -->
<!-- Custom Scripts -->
<script src="./javascript/app.js"></script>
</body>
</html><!-- <!doctype html> -->
<html lang="en" class="no-js">
<head>
<title>Home</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<meta name="description" content="HTML layer with JS bundler for classical templates development.">
<link href="https://example.com/" rel="canonical">
<!-- Preload Google Fonts -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" type="text/css" as="style" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<!-- Fonts Preloading / Caching -->
<link rel="preload" href="./fonts/omk1-r.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<!-- Favicons -->
<link rel="icon" href="./favicons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicons/favicon-16x16.png">
<link rel="mask-icon" href="./favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#121630">
<meta name="msapplication-TileImage" content="./favicons/mstile-150x150.png">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="./favicons/site.webmanifest">
<!-- Twitter Card Basic -->
<meta name="twitter:card" content="summary">
<!-- Twitter Card additional items -->
<meta name="twitter:site" content="@publisher_handle">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description less than 200 characters">
<meta name="twitter:creator" content="@author_handle">
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image" content="./favicons/favicon-120x120.jpg">
<!-- Open Graph (Facebook, Pinterest & Google+) -->
<meta property="og:title" content="Title Here" />
<meta property="og:url" content="http://www.example.com/" />
<meta property="og:description" content="Description Here" />
<meta property="og:image" content="http://example.com/image.jpg" /> <!-- 1200x630 -->
<meta property="og:type" content="site" />
<!-- Open Graph additional items -->
<meta property="og:site_name" content="Short Site Name" />
<meta property="fb:admins" content="Facebook numeric ID" />
<!-- Styles -->
<link href="./styles/main.css" rel="stylesheet" media="all">
</head>
<body>
<!-- When JavaScript isn't available -->
<noscript>
<p>Sorry, but Page should display some content when JavaScript is <a href="//goo.gl/koeeaJ">enabled</a>.</p>
</noscript>
<!-- Navigation -->
<nav class="nav">
<!-- Main Menu -->
<ul class="menu">
<li class="menu__item">
<a class="menu__link" href="./index.html"></a>
</li>
</ul>
</nav>
<div>fsdfr
<!-- Header -->
<header class="header">
<div class="container">
<!-- Logo -->
<div class="logo">
<a class="logo__link" href="./index.html" accesskey="1"><img src="./images/" alt=""></a>
</div>
</div>
</header>
<!-- Intro -->
<section class="section">
<div class="container">
<div class="row">
<!-- Article -->
<div class="col-md-8">
<article class="article">
<h2>Article Title</h2>
<p class="subtitle" role="doc-subtitle">Subtitle</p>
<!-- SVG Block -->
<h3>SVG Block Test</h3>
<img src="./images/html5-logo.svg" alt="" width="200" height="200">
<!-- Picture Block -->
<h3>Picture Block Test</h3>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<!-- Picture Block | Figure Test -->
<h3>Picture Block Test | Figure</h3>
<figure>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption>
</figure>
<!-- Picture Block | Source 2x Test -->
<h3>Picture Block Test | 2x Source</h3>
<picture>
<source srcset="./images/test-image-3.webp 1x, ./images/test-image-3@2x.webp 2x" type="image/webp">
<img loading="eager" srcset="./images/test-image-3.jpg 1x, ./images/test-image-3@2x.jpg 2x" src="./images/test-image-3.jpg" alt=" | Logo" width="400" height="283">
</picture>
<!-- Quotations -->
<h3>Quotations</h3>
<figure>
<blockquote> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </blockquote>
<figcaption><cite>Edsger Dijkstra</cite></figcaption>
</figure>
<blockquote>
<q> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </q>
<p>
<cite>Edsger Dijkstra</cite>
</p>
</blockquote>
</article>
</div>
<!-- Aside -->
<div class="col-md-4">
<aside class="aside">
<h2>Aside</h2>
</aside>
</div>
</div><!-- /.row -->
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<!-- Social Navigation -->
<nav class="nav-social">
<ul class="social-menu">
<li class="social-menu__item">
<a href="./index.html" class="social-menu__link" target="_blank" title="Social Link" rel="noopener"></a>
</li>
</ul>
</nav>
</div>
</footer>
<!-- Vendor Scripts -->
<!-- Custom Scripts -->
<script src="./javascript/app.js"></script>
</body>
</html><!-- <!doctype html> -->
<html lang="en" class="no-js">
<head>
<title>Home</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<meta name="description" content="HTML layer with JS bundler for classical templates development.">
<link href="https://example.com/" rel="canonical">
<!-- Preload Google Fonts -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" type="text/css" as="style" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<!-- Fonts Preloading / Caching -->
<link rel="preload" href="./fonts/omk1-r.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<!-- Favicons -->
<link rel="icon" href="./favicons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicons/favicon-16x16.png">
<link rel="mask-icon" href="./favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#121630">
<meta name="msapplication-TileImage" content="./favicons/mstile-150x150.png">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="./favicons/site.webmanifest">
<!-- Twitter Card Basic -->
<meta name="twitter:card" content="summary">
<!-- Twitter Card additional items -->
<meta name="twitter:site" content="@publisher_handle">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description less than 200 characters">
<meta name="twitter:creator" content="@author_handle">
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image" content="./favicons/favicon-120x120.jpg">
<!-- Open Graph (Facebook, Pinterest & Google+) -->
<meta property="og:title" content="Title Here" />
<meta property="og:url" content="http://www.example.com/" />
<meta property="og:description" content="Description Here" />
<meta property="og:image" content="http://example.com/image.jpg" /> <!-- 1200x630 -->
<meta property="og:type" content="site" />
<!-- Open Graph additional items -->
<meta property="og:site_name" content="Short Site Name" />
<meta property="fb:admins" content="Facebook numeric ID" />
<!-- Styles -->
<link href="./styles/main.css" rel="stylesheet" media="all">
</head>
<body>
<!-- When JavaScript isn't available -->
<noscript>
<p>Sorry, but Page should display some content when JavaScript is <a href="//goo.gl/koeeaJ">enabled</a>.</p>
</noscript>
<!-- Navigation -->
<nav class="nav">
<!-- Main Menu -->
<ul class="menu">
<li class="menu__item">
<a class="menu__link" href="./index.html"></a>
</li>
</ul>
</nav>
<div>fsdfr
<!-- Header -->
<header class="header">
<div class="container">
<!-- Logo -->
<div class="logo">
<a class="logo__link" href="./index.html" accesskey="1"><img src="./images/" alt=""></a>
</div>
</div>
</header>
<!-- Intro -->
<section class="section">
<div class="container">
<div class="row">
<!-- Article -->
<div class="col-md-8">
<article class="article">
<h2>Article Title</h2>
<p class="subtitle" role="doc-subtitle">Subtitle</p>
<!-- SVG Block -->
<h3>SVG Block Test</h3>
<img src="./images/html5-logo.svg" alt="" width="200" height="200">
<!-- Picture Block -->
<h3>Picture Block Test</h3>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<!-- Picture Block | Figure Test -->
<h3>Picture Block Test | Figure</h3>
<figure>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption>
</figure>
<!-- Picture Block | Source 2x Test -->
<h3>Picture Block Test | 2x Source</h3>
<picture>
<source srcset="./images/test-image-3.webp 1x, ./images/test-image-3@2x.webp 2x" type="image/webp">
<img loading="eager" srcset="./images/test-image-3.jpg 1x, ./images/test-image-3@2x.jpg 2x" src="./images/test-image-3.jpg" alt=" | Logo" width="400" height="283">
</picture>
<!-- Quotations -->
<h3>Quotations</h3>
<figure>
<blockquote> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </blockquote>
<figcaption><cite>Edsger Dijkstra</cite></figcaption>
</figure>
<blockquote>
<q> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </q>
<p>
<cite>Edsger Dijkstra</cite>
</p>
</blockquote>
</article>
</div>
<!-- Aside -->
<div class="col-md-4">
<aside class="aside">
<h2>Aside</h2>
</aside>
</div>
</div><!-- /.row -->
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<!-- Social Navigation -->
<nav class="nav-social">
<ul class="social-menu">
<li class="social-menu__item">
<a href="./index.html" class="social-menu__link" target="_blank" title="Social Link" rel="noopener"></a>
</li>
</ul>
</nav>
</div>
</footer>
<!-- Vendor Scripts -->
<!-- Custom Scripts -->
<script src="./javascript/app.js"></script>
</body>
</html><!-- <!doctype html> -->
<html lang="en" class="no-js">
<head>
<title>Home</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<meta name="description" content="HTML layer with JS bundler for classical templates development.">
<link href="https://example.com/" rel="canonical">
<!-- Preload Google Fonts -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" type="text/css" as="style" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<!-- Fonts Preloading / Caching -->
<link rel="preload" href="./fonts/omk1-r.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<!-- Favicons -->
<link rel="icon" href="./favicons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicons/favicon-16x16.png">
<link rel="mask-icon" href="./favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#121630">
<meta name="msapplication-TileImage" content="./favicons/mstile-150x150.png">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="./favicons/site.webmanifest">
<!-- Twitter Card Basic -->
<meta name="twitter:card" content="summary">
<!-- Twitter Card additional items -->
<meta name="twitter:site" content="@publisher_handle">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description less than 200 characters">
<meta name="twitter:creator" content="@author_handle">
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image" content="./favicons/favicon-120x120.jpg">
<!-- Open Graph (Facebook, Pinterest & Google+) -->
<meta property="og:title" content="Title Here" />
<meta property="og:url" content="http://www.example.com/" />
<meta property="og:description" content="Description Here" />
<meta property="og:image" content="http://example.com/image.jpg" /> <!-- 1200x630 -->
<meta property="og:type" content="site" />
<!-- Open Graph additional items -->
<meta property="og:site_name" content="Short Site Name" />
<meta property="fb:admins" content="Facebook numeric ID" />
<!-- Styles -->
<link href="./styles/main.css" rel="stylesheet" media="all">
</head>
<body>
<!-- When JavaScript isn't available -->
<noscript>
<p>Sorry, but Page should display some content when JavaScript is <a href="//goo.gl/koeeaJ">enabled</a>.</p>
</noscript>
<!-- Navigation -->
<nav class="nav">
<!-- Main Menu -->
<ul class="menu">
<li class="menu__item">
<a class="menu__link" href="./index.html"></a>
</li>
</ul>
</nav>
<div>fsdfr
<!-- Header -->
<header class="header">
<div class="container">
<!-- Logo -->
<div class="logo">
<a class="logo__link" href="./index.html" accesskey="1"><img src="./images/" alt=""></a>
</div>
</div>
</header>
<!-- Intro -->
<section class="section">
<div class="container">
<div class="row">
<!-- Article -->
<div class="col-md-8">
<article class="article">
<h2>Article Title</h2>
<p class="subtitle" role="doc-subtitle">Subtitle</p>
<!-- SVG Block -->
<h3>SVG Block Test</h3>
<img src="./images/html5-logo.svg" alt="" width="200" height="200">
<!-- Picture Block -->
<h3>Picture Block Test</h3>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<!-- Picture Block | Figure Test -->
<h3>Picture Block Test | Figure</h3>
<figure>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption>
</figure>
<!-- Picture Block | Source 2x Test -->
<h3>Picture Block Test | 2x Source</h3>
<picture>
<source srcset="./images/test-image-3.webp 1x, ./images/test-image-3@2x.webp 2x" type="image/webp">
<img loading="eager" srcset="./images/test-image-3.jpg 1x, ./images/test-image-3@2x.jpg 2x" src="./images/test-image-3.jpg" alt=" | Logo" width="400" height="283">
</picture>
<!-- Quotations -->
<h3>Quotations</h3>
<figure>
<blockquote> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </blockquote>
<figcaption><cite>Edsger Dijkstra</cite></figcaption>
</figure>
<blockquote>
<q> If debugging is the process of removing software bugs, then programming must be the process of putting them in. </q>
<p>
<cite>Edsger Dijkstra</cite>
</p>
</blockquote>
</article>
</div>
<!-- Aside -->
<div class="col-md-4">
<aside class="aside">
<h2>Aside</h2>
</aside>
</div>
</div><!-- /.row -->
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<!-- Social Navigation -->
<nav class="nav-social">
<ul class="social-menu">
<li class="social-menu__item">
<a href="./index.html" class="social-menu__link" target="_blank" title="Social Link" rel="noopener"></a>
</li>
</ul>
</nav>
</div>
</footer>
<!-- Vendor Scripts -->
<!-- Custom Scripts -->
<script src="./javascript/app.js"></script>
</body>
</html><!-- <!doctype html> -->
<html lang="en" class="no-js">
<head>
<title>Home</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<meta name="description" content="HTML layer with JS bundler for classical templates development.">
<link href="https://example.com/" rel="canonical">
<!-- Preload Google Fonts -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" type="text/css" as="style" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<!-- Fonts Preloading / Caching -->
<link rel="preload" href="./fonts/omk1-r.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<!-- Favicons -->
<link rel="icon" href="./favicons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicons/favicon-16x16.png">
<link rel="mask-icon" href="./favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#121630">
<meta name="msapplication-TileImage" content="./favicons/mstile-150x150.png">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="./favicons/site.webmanifest">
<!-- Twitter Card Basic -->
<meta name="twitter:card" content="summary">
<!-- Twitter Card additional items -->
<meta name="twitter:site" content="@publisher_handle">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description less than 200 characters">
<meta name="twitter:creator" content="@author_handle">
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image" content="./favicons/favicon-120x120.jpg">
<!-- Open Graph (Facebook, Pinterest & Google+) -->
<meta property="og:title" content="Title Here" />
<meta property="og:url" content="http://www.example.com/" />
<meta property="og:description" content="Description Here" />
<meta property="og:image" content="http://example.com/image.jpg" /> <!-- 1200x630 -->
<meta property="og:type" content="site" />
<!-- Open Graph additional items -->
<meta property="og:site_name" content="Short Site Name" />
<meta property="fb:admins" content="Facebook numeric ID" />
<!-- Styles -->
<link href="./styles/main.css" rel="stylesheet" media="all">
</head>
<body>
<!-- When JavaScript isn't available -->
<noscript>
<p>Sorry, but Page should display some content when JavaScript is <a href="//goo.gl/koeeaJ">enabled</a>.</p>
</noscript>
<!-- Navigation -->
<nav class="nav">
<!-- Main Menu -->
<ul class="menu">
<li class="menu__item">
<a class="menu__link" href="./index.html"></a>
</li>
</ul>
</nav>
<div>fsdfr
<!-- Header -->
<header class="header">
<div class="container">
<!-- Logo -->
<div class="logo">
<a class="logo__link" href="./index.html" accesskey="1"><img src="./images/" alt=""></a>
</div>
</div>
</header>
<!-- Intro -->
<section class="section">
<div class="container">
<div class="row">
<!-- Article -->
<div class="col-md-8">
<article class="article">
<h2>Article Title</h2>
<p class="subtitle" role="doc-subtitle">Subtitle</p>
<!-- SVG Block -->
<h3>SVG Block Test</h3>
<img src="./images/html5-logo.svg" alt="" width="200" height="200">
<!-- Picture Block -->
<h3>Picture Block Test</h3>
<picture>
<source srcset="./images/test-photo.webp" type="image/webp">
<img src="./images/test-photo.jpg" alt="" width="400" height="285">
</picture>
<!-- Picture Block | Figure Test -->
<h3>Picture Block Test | Figure</h3