p
{
color: #ff0000;
}
h3
{
color: #0000ff;
}
.button
{
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.box
{
width: 120px;
height: 120px;
border: 2px inset gray;
margin: 4px 2px;
margin-bottom: 1em;
float: left;
}
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Пример js43</title>
</head>
<body>
<h1>Фильтры и анимация</h1>
<p id="p1">Первый параграф</p>
<p id="p2">Второй параграф</p>
<p id="p3">Третий параграф</p>
<input type="button" class="button" id="button1" value="Анимация">
<input type="button" class="button" id="button2" value="Сброс">
<input type="button" class="button" id="button3" value="Фильтр">
<input type="button" class="button" id="button4" value="Переключение">
<input type="button" class="button" id="button5" value="Домашняя работа">
<br>
<div class="box" id="box1"></div>
<div class="box" id="box2"></div>
<div class="box" id="box3"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="module" src="./main.js"></script>
</body>
</html>