27 lines
873 B
HTML
27 lines
873 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>Cg-Select</title>
|
|
<link href="./style/main.scss" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<button class="cg-dropdown cg-dropdown_one"></button>
|
|
|
|
<button class="cg-dropdown cg-dropdown_two"></button>
|
|
|
|
<button class="cg-dropdown cg-dropdown_three"></button>
|
|
|
|
<button class="cg-dropdown cg-dropdown_button" style="margin-top: 50px"></button>
|
|
</div>
|
|
<!-- <div class="buttonControlBox">
|
|
<button class="buttonControl button__open">Open</button>
|
|
<button class="buttonControl button__close">Close</button>
|
|
</div> -->
|
|
</body>
|
|
<script type="module" src="index.js"></script>
|
|
</html>
|