30 lines
824 B
HTML
30 lines
824 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<style>
|
|
.mybutton{
|
|
padding: 20px;
|
|
margin: 20px;
|
|
float: left;
|
|
background-color: aqua;
|
|
border: 10px dashed white;
|
|
font-size: 4ch;
|
|
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
|
|
font-style: italic;
|
|
}
|
|
</style>
|
|
<body>
|
|
<button class="mybutton">Button 1</button>
|
|
<button class="mybutton">Button 2</button>
|
|
<button class="mybutton">Button 3</button>
|
|
<button class="mybutton">Button 4</button>
|
|
<button class="mybutton">Button 5</button>
|
|
<button class="mybutton">Button 6</button>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |