Skip to content

Commit 7b0aa17

Browse files
committed
Added title, h1, h2, and the beginnings of a grid layout.
1 parent 8cce918 commit 7b0aa17

1 file changed

Lines changed: 36 additions & 1 deletion

File tree

index.html

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,43 @@
88
gtag('js', new Date());
99
gtag('config', 'UA-176277833-1');
1010
</script>
11+
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap" rel="stylesheet">
12+
<style>
13+
body {
14+
height: 100%;
15+
background-image: linear-gradient(#171738, #593C8F);
16+
}
17+
h1 {
18+
font-family: 'Oswald', sans-serif;
19+
color: #8EF9F3;
20+
font-size: 50px;
21+
text-align: center;
22+
}
23+
h2 {
24+
text-align: center;
25+
color: #FFD9CE;
26+
}
27+
#flex-container {
28+
display: flex;
29+
order: 3;
30+
justify-content: space-evenly;
31+
align-content: space-around;
32+
}
33+
.tile {
34+
background-image: radial-gradient(#FFD9CE, #DB5461);
35+
width: 100px;
36+
height: 100px;
37+
}
38+
</style>
1139
</head>
1240
<body>
13-
<h1>Hello World</h1>
41+
<title>DevHyper</title>
42+
<h1>DevHyper</h1>
43+
<h2>I create and design software.</h2>
44+
<div id="flex-container">
45+
<div class="tile"> <span>1</span></div>
46+
<div class="tile"> <span>2</span></div>
47+
<div class="tile"> <span>3</span></div>
48+
</div>
1449
</body>
1550
</html>

0 commit comments

Comments
 (0)