NodeLists
This commit is contained in:
30
Practice/NodeListsAndOtherLists/main.html
Normal file
30
Practice/NodeListsAndOtherLists/main.html
Normal file
@ -0,0 +1,30 @@
|
||||
<!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>
|
Reference in New Issue
Block a user