Code, Preview, Share.
The simplest way for beginner developers to showcase their HTML, CSS, and JavaScript projects without needing to know hosting or Git.
<!DOCTYPE html>
<html>
<head>
<title>My Project</title>
<style>
body {
font-family: sans-serif;
background: linear-gradient(
45deg, #845EC2, #D65DB1
);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: white;
}
.card {
background: rgba(255,255,255,0.1);
padding: 2rem;
border-radius: 1rem;
backdrop-filter: blur(10px);
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<div class="card">
<h1>Hello, World!</h1>
<p>My awesome website</p>
</div>
</body>
</html>Hello, World!
My awesome website


