mirror of
https://github.com/BenDWit/freecodecamp.git
synced 2025-12-23 13:09:59 +01:00
23 lines
No EOL
617 B
HTML
23 lines
No EOL
617 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Confidential Email</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<main id="email">
|
|
<div id="confidential">
|
|
<p>CONFIDENTIAL</p>
|
|
</div>
|
|
<div id="top-secret">
|
|
<p>TOP SECRET</p>
|
|
</div>
|
|
<p>address:<span class="blurred">Homestreet 1 1919EI</span></p>
|
|
<p>name:<span class="blurred">BEN</span></p>
|
|
<p>sender:<span class="blurred">CIA</span></p>
|
|
</main>
|
|
</body>
|
|
</html> |