-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (73 loc) · 1.96 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rita & Aurora</title>
<style>
body {
background-color: #28E8C0;
font-family: 'Helvetica', sans-serif;
font-style: normal;
font-weight: 100;
}
a {
color: white;
text-decoration: underline;
}
a:hover {
color: white;
}
a:visited {
color: white;
}
a:active {
color: white;
}
.projects_container {
text-align: center;
margin-bottom: 50px;
margin-top: 40px;
}
.project {
width: 200px;
height: 200px;
display: inline-block;
margin-right: 10px;
}
h2 {
text-align: center;
margin-top: 50px;
}
</style>
</head>
<body>
<div>
<img src="Rita&AuroraAudioLogo-square-nobg.png" alt="Rita & Aurora logo" title="Rita & Aurora logo" style="display: block;margin-left: auto;margin-right: auto;width:100%;max-width:700px;margin-top:30px;"/>
</div>
<div style="margin: auto;max-width:800px;padding: 10px;color:white;">
<h2>About</h2>
<p style="font-size:120%;"><b>Rita & Aurora</b> is just a sort of fancy branding name that I've given to my freelance audio developer <a href="https://ffont.github.io">self</a>.
Information about the projects I do (if any) will be linked here.</p>
<h2>Current projects</h2>
<div class="projects_container">
<div class="project">
<a href="https://ritaandaurora.github.io/ddrm-jfsebastian">
<img src="jf_sebastian_icon.png" style="width:100%" alt="J.F. Sebastian" />
</a>
</div>
<div class="project">
<a href="https://ritaandaurora.github.io/kijimi-babu-frik">
<img src="babu_frik_icon.png" style="width:100%" alt="Babu Frik" />
</a>
</div>
<div class="project">
<a href="https://github.com/ffont/source/">
<img src="source_icon.png" style="width:100%" alt="SOURCE" />
</a>
</div>
</div>
</div>
</body>
</html>