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
49 changes: 49 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ejemplo de Comentarios</title>
<style>
body {
font-family: 'Arial', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f2f5;
}
.message-box {
text-align: center;
padding: 30px;
border-radius: 10px;
background-color: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
max-width: 500px;
}
h1 {
color: #333;
margin-bottom: 20px;
}
p {
color: #555;
margin-bottom: 30px;
}
.comment-example {
background-color: #f8f9fa;
padding: 15px;
border-radius: 5px;
font-family: monospace;
text-align: left;
color: #2c3e50;
border-left: 4px solid #3498db;
}
</style>
</head>
<body>
<div class="message-box">
<h1>Atención</h1>
<p>Los cambios en los archivos solo fueron comentarios.</p>
</body>
</html>