20 lines
486 B
HTML
20 lines
486 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Main</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
<body>
|
|
<div class="glass-container">
|
|
<div class="data-box">
|
|
<h2>data</h2>
|
|
<form action="#" method="POST">
|
|
<p>Data</p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<script src="js.js"></script>
|
|
</body>
|
|
</html> |