-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (62 loc) · 2.2 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UI PSY</title>
<link rel="icon" href="assets/uxui.png" type="image/gif" sizes="25x25">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="./elements.js"></script>
<style>
.header {
color: white;
border-bottom: solid;
}
</style>
</head>
<body>
<lang-navbar class="navbar" name="top">
</lang-navbar>
<div class="grid-container">
<div class="header">
<a name="top"></a>
<h1>THE INTERFACE OF A USER’S<br>PSYCHOLOGY</h1>
</div>
<side-menu class="left"></side-menu>
<div class="main">
<div id="p1">
<br>
<p id="intro1">
</p>
</div>
<picture>
<source media="(min-width: 700px)" srcset="assets/book.png" alt="book" width="200" height="180">
<img id="book" src="assets/book.png" alt="book" width="200">
</picture>
<div id="p2">
<h4 id="q1"><em id="intro2"></em></h4>
<h4 id="q2"><em id="intro3"></em></h4>
<span id="introEnd"></span>
</div>
</div>
<div class="footer">
<toe-one class="toe1"></toe-one>
<div class="toe2">
<div id="n1">“A User Interface is like a joke. <br>If you have to explain it,<br> it's not that good.”
<br>
</div>
<div id="n"><strong>Martin LeBlanc<br>CEO of Iconfinder</strong></div>
</div>
<toe-three class="toe3"></toe-three>
</div>
</div>
<script src="brain.js"></script>
<script>
var lang = getLanguage();
document.getElementById("intro1").innerHTML = lang.intro1;
document.getElementById("intro2").innerHTML = lang.intro2;
document.getElementById("intro3").innerHTML = lang.intro3;
document.getElementById("introEnd").innerHTML = lang.introEnd;
</script>
</body>
</html>