-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
195 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" /> | ||
<link rel="stylesheet" href="./css/main.css" /> | ||
</head> | ||
<body> | ||
<nav> | ||
<div class="home-container"> | ||
<button class="home" title="Home"> | ||
<a href="./index.html" class="help-link">⌂</a> | ||
</button> | ||
</div> | ||
<div class="title-container"> | ||
<h1>Help</h1> | ||
</div> | ||
</nav> | ||
|
||
<div class="container"> | ||
<div class="row"> | ||
<div class="col"> | ||
<div class="grey-box"> | ||
<button title="Track callouts"> | ||
<i class="fas"></i> | ||
</button> | ||
<strong>Track callouts</strong> | ||
- Announce nearby locations as you move around. | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col"> | ||
<div class="grey-box"> | ||
<button id="btn_near_me" title="Announce places near me">ⓘ</button> | ||
<strong>Announce places near me</strong> | ||
- Announce nearby locations and how far away they are. | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col"> | ||
<div class="grey-box"> | ||
<button title="Voice"> | ||
<i class="fas">🗣</i> | ||
</button> | ||
<strong>Voice</strong> | ||
- Select the voice that announces nearby locations. | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<div class="col"> | ||
<div class="grey-box"> | ||
<div id="rate" title="Speaking rate"> | ||
<button id="decreaseRate" title="Decrease speaking rate">−</button> | ||
<div id="rateValue">2</div> | ||
<button id="increaseRate" title="Increase speaking rate">+</button> | ||
</div> | ||
<strong>Speaking rate </strong>- Adjust how fast the voice talks. | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.