-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
30 lines (27 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<title>Visual Respiration</title>
<!--Importing CSS-->
<link href="./style.css" type="text/css" rel="stylesheet">
<script src="./script.js" type="text/javascript" async></script>
</head>
<body>
<header>
<div>
<span>Visual Respiration</span>
</div>
</header>
<main id="smain">
<div id="qbox">
<p>Welcome to <span style="color:rgb(22, 201, 102)"><strong style="color:rgb(24, 146, 155)">V</strong>isual <strong style="color:rgb(24, 146, 155)"">R</strong>espiration</p>
<p id="namec">Enter your name to continue..</p>
<form action="./main.html">
<input type="text" placeholder="Enter your name here" name="inpField">
<br/>
<a href="./main.html"><button id="button" onmouseover=hoverListener() onmouseout=outListener() type="submit">Continue</button></a>
</form>
</div>
</main>
</body>
</html>