-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (45 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico"/>
<title>Roadrunner Capital</title>
<style>
body {
font-size: 16px;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Lucida Grande', helvetica, arial, verdana, sans-serif;
}
#content {
text-align: center;
}
#title {
display: flex;
align-items: center;
justify-content: center;
}
#title svg {
margin-right: 10px;
}
#name {
font-size: 20px;
}
</style>
</head>
<body>
<div id="content">
<div id="title">
<svg width="80" height="80" viewBox="0 0 80 80" fill="black" xmlns="http://www.w3.org/2000/svg">
<path d="M40 0C41.2696 0 42.2989 1.02923 42.2989 2.29885V2.75862V2.84983C42.2994 9.15821 42.3672 17.7764 46.6262 24.869C50.7517 31.7397 59.1789 37.7011 77.2414 37.7011H77.7011C78.9706 37.7011 80 38.7304 80 40C80 41.2696 78.9706 42.2989 77.7011 42.2989H77.2414H77.2331C59.1816 42.3007 50.7545 48.2933 46.6271 55.1825C42.3668 62.2943 42.2994 70.9154 42.2989 77.1503V77.2414V77.7011C42.2989 78.9706 41.2696 80 40 80C38.7304 80 37.7011 78.9706 37.7011 77.7011V77.2414V77.1503C37.7006 70.9154 37.6332 62.2943 33.3728 55.1825C29.2467 48.2952 20.8237 42.3045 2.784 42.2989H2.29885C1.02923 42.2989 0 41.2696 0 40C0 38.7304 1.02923 37.7011 2.29885 37.7011H2.75862C20.8213 37.7011 29.2484 31.7397 33.374 24.869C37.6333 17.7756 37.7006 9.15623 37.7011 2.84765V2.75862V2.29885C37.7011 1.02923 38.7304 0 40 0ZM39.7701 51.954C46.4993 51.954 51.954 46.4993 51.954 39.7701C51.954 33.0411 46.4993 27.5862 39.7701 27.5862C33.0411 27.5862 27.5862 33.0411 27.5862 39.7701C27.5862 46.4993 33.0411 51.954 39.7701 51.954Z"></path>
</svg>
<span id="name">Roadrunner Capital</span>
</div>
</div>
</body>
</html>