-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (123 loc) Β· 3.82 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
href="https://fonts.googleapis.com/css?family=Karla:400,700&display=swap"
rel="stylesheet"
/>
<link href="./reset.css" rel="stylesheet" />
<link href="./style.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:100,300,400,700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Notable&display=swap"
rel="stylesheet"
/>
<link
href="https://use.fontawesome.com/releases/v5.0.7/css/all.css"
rel="stylesheet"
/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-153492451-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-0XH2DY9T1L");
</script>
<script>
(function (H) {
H.className = H.className.replace(/\bno-js\b/, "js");
})(document.documentElement);
</script>
<title>MIGUEL ALVAREZ PORFOLIO</title>
</head>
<body onload="js_Load() ">
<div id="loader">
<h1 class="title"></h1>
</div>
<div id="main" style="visibility: hidden">
<div class="container">
<div class="c1">
<a href="javascript:window.location=goto( 'medical') ">
<div class="fila">
<div class="marker">
<p>CODE</p>
</div>
<h2 class="right">MEDICAL VIEWER</h2>
</div>
</a>
<a href="javascript:window.location=goto( 'inflight-vr') ">
<div class="fila">
<div class="marker">
<p>PRODUCT DESIGN</p>
</div>
<h2 class="right">INFLIGHT VR</h2>
</div>
</a>
<a href="javascript:window.location=goto( 'Belote') ">
<div class="fila">
<div class="marker">
<p>UX DESIGN</p>
</div>
<h2 class="right">BELOTE</h2>
</div>
</a>
<a href="javascript:window.location=goto( 'eh') ">
<div class="fila">
<div class="marker">
<p>GAME DESIGN</p>
</div>
<h2 class="right">EMERGENCY HEROES</h2>
</div>
</a>
<a href="javascript:window.location=goto( 'indie-games') ">
<div class="fila">
<div class="marker">
<p>GAME DESIGN</p>
</div>
<h2 class="right">INDIE GAMES</h2>
</div>
</a>
<a href="javascript:window.location=goto( 'Ilustration') ">
<div class="fila">
<div class="marker">
<p>CREATIVE</p>
</div>
<h2 class="right">ANIMATIONS</h2>
</div>
</a>
<a href="javascript:window.location=goto( 'lectures') ">
<div class="fila">
<div class="marker">
<p>LECTURES</p>
</div>
<h2 class="right">TALKS</h2>
</div>
</a>
<div class="contact-fila">
<a
href="mailto:[email protected]?Subject=Hi! "
target="_top "
>
<h2 class="right">GET IN TOUCH</h2>
</a>
</div>
</div>
</div>
</div>
<script src="./scripts/load.js "></script>
<script src="scripts/injectMenu.js "></script>
<script src="./scripts/goto.js "></script>
</body>
</html>