46 lines
1,020 B
HTML
46 lines
1,020 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>Blog preview card</title>
|
|
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href="./assets/images/favicon-32x32.png"
|
|
/>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<div class="container center">
|
|
<div class="card">
|
|
<div class="image center">
|
|
<img
|
|
src="/images/illustration-article.svg"
|
|
alt="Article illustration"
|
|
/>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<p>Learning</p>
|
|
|
|
<p>Published 21 Dec 2023</p>
|
|
|
|
<h1>HTML & CSS foundations</h1>
|
|
|
|
<p>
|
|
These languages are the backbone of every website, defining
|
|
structure, content, and presentation.
|
|
</p>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>Greg Hooper</p>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|