JSFiddle - React, Tailwind, and code Playground
by graphettion
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Bio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
background-color: #f0f0f0;
}
h1 {
color: #2b5797;
font-size: 36px;
}
p {
color: #333;
font-size: 18px;
line-height: 1.5;
margin-bottom: 20px; /* Added space between paragraphs */
}
.highlight {
background-color: #fff3cd;
padding: 10px;
border: 1px solid #ffeeba;
}
.hobby {
background-color: #000; /* Changed to background-color for consistency */
color: #fff;
padding: 10px; /* Added padding for spacing */
border-radius: 5px; /* Optional: softens corners */
}
</style>
</head>
<body>
<h1>Hello, I’m Codye Watson!</h1>
<p>I’m learning front-end development to build awesome web apps. I love coding, coffee, and creating things that scale.</p>
<p class="highlight">Goal: Master Next.js and build scalable SPAs with unit tests!</p>
<p class="hobby">I like playing chess.</p>
</body>
</html>