22 строки
662 B
HTML
22 строки
662 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>Video app sample</title>
|
|
</head>
|
|
<body>
|
|
<h1 class="app-title">Video app sample</h1>
|
|
<div class="horizontal">
|
|
<div class="filter" id="filter-half">
|
|
<a class="thumbnail"></a>
|
|
</div>
|
|
<div class="filter" id="filter-gray">
|
|
<a class="thumbnail"></a>
|
|
</div>
|
|
</div>
|
|
<link rel="stylesheet" type="text/css" href="./src/index.css" />
|
|
<script src="./src/index.js" type="module"></script>
|
|
</body>
|
|
</html> |