-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (131 loc) · 3.94 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
136
137
138
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Denton Tran</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="icon" type="image/x-icon" href="homepage.png">
<link href="https://fonts.googleapis.com/css2?family=Fira+Mono:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="bubbles.css"/>
</head>
<header>
<a href="blog.html" target="_blank" class="right header_link">Blog</a>
<a href="portfolio.html" target="_blank" class="header_link">Portfolio</a>
</header>
<body>
<section>
<h1>
Hi. I'm Denton.
<br>
I am a programmer,
<br>
analyst,
<br>
and artist.
</h1>
<div class="bubbles">
<div class="bubble-l"></div>
<div class="bubble-l"></div>
<div class="bubble-l"></div>
<div class="bubble-l"></div>
<div class="bubble-l"></div>
<div class="bubble-r"></div>
<div class="bubble-r"></div>
<div class="bubble-r"></div>
<div class="bubble-r"></div>
<div class="bubble-r"></div>
</div>
</section>
<footer>
<nav>
<div>
<a class="link" target="_blank" href="https://linkedin.com/in/denton-tran-477060246">Linkedln</a>
</div>
<div>
<a class="link" target="_blank" href="https://github.com/Pikastunner">Github</a>
</div>
<div>
<a class="link" target="_blank" href="https://pikastunner.github.io/me/MY_RESUME.pdf">Resume</a>
</div>
</nav>
</footer>
</body>
</html>
<style>
header {
padding: 50px 7%;
display: flex;
}
header .header_link {
font-size: 20px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
margin-left: 50px;
border-bottom: 0;
color: white;
}
.right {
margin-left: auto!important;
}
h1 {
font-size: 3.5rem;
line-height: 5rem;
margin-block-start: 0.67em; /* same as margin-top */
padding-left: 7%;
color: white;
position: relative;
top: 73px;
}
.link {
border-bottom: 3px solid #11998e;
color: white;
font-family: 'Roboto', sans-serif;
}
footer {
width: 100%;
height: 108px;
position: absolute;
bottom: 0;
display: block;
}
footer nav {
border-top: 1px solid #d8d8d8;
width: 90%;
max-width: 750px;
margin: auto;
display: flex;
justify-content: center;
height: 100%;
}
footer nav div {
width: 33%;
max-width: 180px;
align-self: center;
text-align: center;
}
a {
text-decoration: none;
}
a:hover {
background-color: #11998e;
}
html {
font-size: 18px;
background-color: #18191A;
background-size: cover;
}
body {
font-family: 'Fira Mono', monospace;
height: 100%;
margin: 0;
overflow: hidden;
}
@media (max-width: 599px) {
h1 {
font-size: 2rem;
line-height: 3rem;
}
}
</style>