Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions data/samples/html/minimal_mono.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minimal Mono Blog</title>
<style>
body {
background: #fff;
color: #000;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
}
.blog-header {
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
margin-bottom: 20px;
}
.blog-header h1 {
font-size: 2em;
font-weight: normal;
margin: 0;
}
.blog-post {
margin-bottom: 30px;
}
.blog-post h2 {
font-size: 1.5em;
font-weight: normal;
margin: 0 0 5px 0;
}
.blog-post .date {
color: #999;
font-size: 0.9em;
margin-bottom: 10px;
}
.blog-post p {
margin: 0 0 10px 0;
}
</style>
</head>
<body>
<div class="blog-header"><h1>My Minimal Blog</h1></div>
<div class="blog-post">
<h2>A Simple Post</h2>
<div class="date">February 15, 2025</div>
<p>This is a minimal monochrome blog post. Content goes here.</p>
</div>
Loading