RearangeClockMiniProjectAndOthers
This commit is contained in:
42
Practice/FunctionalFun/index.html
Normal file
42
Practice/FunctionalFun/index.html
Normal file
@ -0,0 +1,42 @@
|
||||
<!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>
|
||||
#formimage {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 50%;
|
||||
margin: 10px;
|
||||
display: inline-block;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
||||
transition: transform 0.3s;
|
||||
}
|
||||
#formimage:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
.container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<label for="" id="theArray"></label>
|
||||
<p id="outputter"></p>
|
||||
|
||||
<div>
|
||||
<h1>Roll the dice!</h1>
|
||||
<label for="">Dice Roller:</label>
|
||||
<input type="number" value="1" id="numberofimages">
|
||||
<input type="button" value="Roll Dice!" id="dicerollerimageloader">
|
||||
<div id="diceimages" class="container"></div>
|
||||
</div>
|
||||
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user