-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (51 loc) · 1.85 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
<html>
<head>
<title>Rodrigo Hiroto Morais</title>
<link rel="icon" type="image/x-icon" href="/imgs/pugicon.gif" />
<link href="./style.css" rel="stylesheet" />
<link href="./styles/card.css" rel="stylesheet" />
<link href="./styles/sectionStyling.css" rel="stylesheet" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui"
/>
</head>
<body>
<h2 class="name-title">Rodrigo Hiroto</h2>
<div class="other-links">
<a href="https://github.com/rodigu" target="_blank"
><img src="./imgs/GitHub-Mark-Light-64px.png"
/></a>
<!-- <a href="https://tic80.com/dev?id=5531" target="_blank"
><img src="./imgs/tic80.png"
/></a> -->
<a
href="https://informatics.ischool.illinois.edu/person/rodrigo-morais/"
target="_blank"
><img src="./imgs/blocki.png"
/></a>
<!-- <a href="https://rmorais.itch.io" target="_blank"
><img src="./imgs/itch.svg"
/></a> -->
<a href="https://www.linkedin.com/in/rodrigohmorais/" target="_blank"
><img src="./imgs/linkedinlogo.png"
/></a>
</div>
<div class="menu">
<button onclick="changeSection('projects')" id="leftbutton">
projects
</button>
<button onclick="changeSection('work')" id="centerbutton">work</button>
<button onclick="changeSection('games')" id="rightbutton">games</button>
</div>
<div class="sections">
<div id="projects" class="card-section" data-status="left"></div>
<div id="work" class="card-section" data-status="center"></div>
<div id="games" class="card-section" data-status="right"></div>
</div>
<script src="script.js"></script>
<div class="content">
<script src="genCards.js"></script>
</div>
</body>
</html>