-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
47 lines (38 loc) · 1.4 KB
/
home.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fitt's Law</title>
<link rel="stylesheet" href="src/style2.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<h1>Fitt's Law</h1>
</div>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="game.html">Game</a></li>
<li><a href="home copy.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="main-container">
<p class="main-text">Fitt's Law is a principle that describes the relationship between the size of a target, its distance, and the time it takes to reach it accurately. This law is often used in fields such as human-computer interaction, where it helps designers create user interfaces that are easy and efficient to use.
<br>
<br>
Here, we use Fitt's Law in a simple game to asses how we plan, prepare and execute a fast movement.
</p>
<a href="game.html" class="play-button">Play</a>
</div>
</main>
<footer>
</footer>
</body>
</html>