Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://raw.githubusercontent.com/rolling-scopes-school/stage1-tasks/momentum/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="owfont-regular.css" />
<link rel="stylesheet" href="style.css" />
<title>momentum</title>
</head>
<body class="body">
<header class="header">
<div class="player">
<div class="player-controls">
<button class="play-prev player-icon"></button>
<button class="play player-icon"></button>
<button class="play-next player-icon"></button>
</div>
<ul class="play-list"></ul>
</div>
<div class="weather">
<input type="text" class="city" />
<i class="weather-icon owf"></i>
<div class="weather-error"></div>
<div class="description-container">
<span class="temperature"></span>
<span class="weather-description"></span>
</div>
<div class="wind"></div>
<div class="humidity"></div>
</div>
</header>
<main class="main">
<div class="slider-icons">
<button class="slide-prev slider-icon"></button>
<button class="slide-next slider-icon"></button>
</div>
<time class="time"></time>
<date class="date"></date>
<div class="greeting-container">
<span class="greeting"></span>
<input type="text" class="name" />
</div>
</main>
<footer class="footer">
<button class="change-quote"></button>
<div>
<div class="quote"></div>
<div class="author"></div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>
Loading