-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·87 lines (69 loc) · 2.42 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/desktop.css">
<link rel="stylesheet" href="css/mobile.css">
<title>SF vs. Roboto</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="two columns">
<img src="images/indicator_sf.png" id="left_arrow" class="indicator2" alt="sf_indicator">
<div class="sfmenu">
<ul style="list-style-type:none">
<li> San Francisco </li>
</ul>
</div>
</div>
<div class="eight columns">
</div>
<div class="two columns">
<img src="images/indicator_ro.png" id="right_arrow" class="indicator2" alt="ro_indicator">
<div class="romenu">
<ul style="list-style-type:none">
<li> Roboto </li>
</ul>
</div>
</div>
</div>
<div class="showcase_sf" > </div>
<div class="background" id="background">
<textarea id="showcase_ro" class="showcase_ro" spellcheck="false" autocomplete="off" maxlength="15" autofocus></textarea>
</div>
<div id="goto_ro">
<img src="images/goto_ro.png" class="indicator" alt="goto_ro">
Go to Roboto
</div>
<div id="goto_sf">
<img src="images/goto_sf.png" class="indicator" alt="goto_sf">
Go to San Francisco
</div>
<div class="popup" id="pop_sf">
<div class="pop_text" >
<h1>Who</h1>
<p>San Francisco is a neo-grotesque sans-serif typeface made by Apple Inc.</p>
<h1>When</h1>
<p>It was first released to developers on November 18, 2014.</p>
<h1>Where</h1>
<p>It is system typeface of the Apple Watch, OS X and iOS with OS X El Capitan and iOS 9.</p>
</div>
</div>
<div class="popup" id="pop_ro">
<div class="pop_text">
<h1>Who</h1>
<p>Roboto is a neo-grotesque sans-serif typeface family developed by Google. Designer is Christian Robertson.</p>
<h1>When</h1>
<p>It was officially made available for free download on January 12, 2012, on the newly launched Android Design website.</p>
<h1>Where</h1>
<p>It is system typeface on the Android operating system, and since 2013 it is also the default font of other Google services such as Google+, Google Play, YouTube and Google Maps.</p>
</div>
</div>
</div>
</body>
</html>