24 lines
818 B
HTML
24 lines
818 B
HTML
|
<!DOCTYPE html>
|
||
|
<!--
|
||
|
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||
|
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this template
|
||
|
-->
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Blockquote Example</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>The Power of The Web</h1><!-- comment -->
|
||
|
<p>According to Tim Berners-Lee, the inventer of the World Wide Web,
|
||
|
at http://www.w3.org/WAI/:
|
||
|
</p><!-- comment -->
|
||
|
<blockquote>
|
||
|
The Power of the Web is in its universality.
|
||
|
Access by everyone regardless of disability is
|
||
|
an essential aspect.
|
||
|
</blockquote>
|
||
|
</body>
|
||
|
</html>
|