-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiag-btn-example.html
34 lines (32 loc) · 1.01 KB
/
diag-btn-example.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
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Diag-btn</title>
<link rel="stylesheet" href="css/diag-btn.css">
</head>
<body>
<p>
Here's diag-btn: a simple web UI improvement for mobile interfaces.
</p>
<p>
It supports individual buttons and stacked buttons up to any depth.<br>
Here's what it looks like:
</p>
<!-- Spacer added in HTML instead of CSS so CSS can be copied & pasted unmodified. -->
<div class="spacer">
</div>
<div class="diag-btn">
<input type="submit" class="diag-btn" value="Okay">
</div>
<div class="diag-btn">
<input type="submit" class="diag-btn" value="OK">
<input type="submit" class="diag-btn" value="Cancel">
</div>
<div class="diag-btn">
<input type="submit" class="diag-btn" value="No">
<input type="submit" class="diag-btn" value="Maybe">
<input type="submit" class="diag-btn" value="Yes">
</div>
</body>
</html>