15 lines
347 B
HTML
Executable File
15 lines
347 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Box Example</title>
|
|
<style>
|
|
.box { border: 2px solid black; padding-top: 20px; margin: 20px; }
|
|
.button {padding: 100px; background-color: red}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">This is a simple outlined box with some text inside.</div>
|
|
<a href="output.html" class="button">Press me</a>
|
|
|
|
</body>
|
|
</html> |