47 lines
1.4 KiB
HTML
47 lines
1.4 KiB
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;
|
|
}
|
|
.textone{
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
font-size: 5ch;
|
|
color: red;
|
|
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
|
|
text-decoration: underline;
|
|
}
|
|
.texttwo{
|
|
font-style:initial;
|
|
font-weight: bold;
|
|
text-decoration: wavy;
|
|
text-shadow: 3px 3px 3px blue;
|
|
font-size: 5ch;
|
|
color: yellow;
|
|
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
|
|
}
|
|
</style>
|
|
<body>
|
|
<button class="mybutton" id="buttonone">Button 1</button>
|
|
<button class="mybutton" id="buttontwo">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> |