Skip to content

Commit

Permalink
Update app.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Priya730 authored Jul 21, 2021
1 parent b6cc040 commit 5ac723b
Showing 1 changed file with 12 additions and 36 deletions.
48 changes: 12 additions & 36 deletions app.html
Original file line number Diff line number Diff line change
@@ -1,51 +1,27 @@
<!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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="appstyle.css">
<title>Meditation App</title>
<link rel="stylesheet" href="appStyle.css" />
<title>Relaxer</title>
</head>

<body>
<h1>Relaxer</h1>
<div class="container">

<div class="circle"></div>

<div class="app">
<p id="text"></p>

<div class="vid-container">
<video loop>
<source src="./video/rain.mp4" type="video/mp4">
</video>
<div class="pointer-container">
<div class="pointer"></div>
</div>

<div class="time-select">
<button data-time="120">2 Minutes</button>
<button data-time="300">5 Minutes</button>
<button data-time="600">10 Minutes</button>
</div>
<div class="player-container">
<audio class="song">
<source src="./sounds/rain.mp3">
</audio>
<img src="./svg/play.svg" alt="play" class="play">
<svg class="track-outline" width="453" height="453" viewBox="0 0 453 453" fill="none"
xmlns="http://www.w3.org/2000/svg">
<circle cx="226.5" cy="226.5" r="216.5" stroke="white" stroke-width="20" />
</svg>
<svg class="moving-outline" width="453" height="453" viewBox="0 0 453 453" fill="none"
xmlns="http://www.w3.org/2000/svg">
<circle cx="226.5" cy="226.5" r="216.5" stroke="#018EBA" stroke-width="20" />
</svg>
<h3 class="time-display">0:00</h3>
</div>
<div class="sound-picker">
<button data-sound="./sounds/rain.mp3" data-video="./video/rain.mp4"><img src="./svg/rain.svg"></button>
<button data-sound="./sounds/beach.mp3" data-video="./video/beach.mp4"><img src="./svg/beach.svg"></button>
</div>
<div class="gradient-circle"></div>
</div>

<script src="./app.js"></script>
<script src="script.js"></script>
</body>

</html>

0 comments on commit 5ac723b

Please sign in to comment.