web-template/HTML/quotes-code.html

49 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS -->
<link rel="stylesheet" href="../CSS/colorscheme.css">
<link rel="stylesheet" href="../CSS/default.css">
<link rel="stylesheet" href="../CSS/quote-code.css">
<title>Quotes and code</title>
</head>
<body>
<div style="margin: 5px">
<code>#include <stdio.h>
int main(void) {
printf("Hello world !");
}
</code>
</div>
<div style="margin: 5px">
<pre>
#include <stdio.h>
int main(void) {
printf("Hello world !");
}
</pre>
</div>
<div style="margin: 5px">
<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.
</blockquote>
</div>
<div style="margin: 5px">
<details>
<summary>Epcot Center</summary>
<p>Epcot is a theme park at Walt Disney World Resort featuring exciting attractions, international pavilions, award-winning fireworks and seasonal special events.</p>
</details>
</div>
</body>
</html>