-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
50 lines (43 loc) · 2.3 KB
/
about.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
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Using Bootstrap CDN to include Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<!-- My own css -->
<link rel="stylesheet" type="text/css" href="/css/style.css">
<title>About</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h4>About</h4>
</div>
</div>
<div class="row">
<div class="col-sm-12">
This web app helps users find tennis partners of similar skill level, at a mutually agreeable time and place.<br><br>
This project is still a work-in-progress, so I'm happy to hear any feedback, suggestions, and/or questions! Please send them to <a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<h4>FAQ</h4>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<b>Q: How are player skill levels determined?</b><br>
A: Each player fills-in his/her own "NTRP" skill level when joining. For more details on NTRP skill level, <a href="https://www.usta.com/Adult-Tennis/USTA-League/ntrp/" target="_blank">click here.</a><br><br>
<b>Q: How are players matched according to NTRP?</b><br>
A: Players are considered "similar skill" if their NTRP ratings are within 0.5 of each other. For example, a 3.5 player can be matched with players in the 3.0 - 4.0 range.<br><br>
<b>Q: Are there gender differences for NTRP levels?</b><br>
A: Empirically, for a given NTRP level, men and women tend to be at different skill levels. For example, a 4.0 man generally plays at a different (higher) level than a 4.0 woman. For simplicity, we estimate this difference to be 0.5 NTRP, such that a 4.0 man will be equivalent to a 4.5 woman.<br><br>
</div>
</div>
</div>
</body>
</html>