scheduleSon/frontend/public/index.html

26 lines
737 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Расписание</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
<div id="today-section" class="day-section">
<h1 class="day-title" id="today-title">Сегодня</h1>
<div id="today-content"></div>
</div>
<div id="tomorrow-section" class="day-section">
<h1 class="day-title" id="tomorrow-title">Завтра</h1>
<div id="tomorrow-content"></div>
</div>
</div>
<script src="/static/script.js"></script>
</body>
</html>