21 lines
579 B
HTML
21 lines
579 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Document</title>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="card">
|
||
|
<h2 class="name">Like & Dislike</h2>
|
||
|
<h4 id="counter">0</h4>
|
||
|
<div class="container">
|
||
|
<button class="btn prevBtn">✘</button>
|
||
|
<button class="btn nextBtn">✔</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script src="main.js"></script>
|
||
|
</body>
|
||
|
</html>
|