Skip to content

Commit 2a5fffd

Browse files
committed
feat: initial commit
0 parents  commit 2a5fffd

File tree

3 files changed

+85
-0
lines changed

3 files changed

+85
-0
lines changed

.gitignore

Whitespace-only changes.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Server Setup
2+
3+
Script to setup ec2 instances for mdgspace

index.html

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>MDG SPACE</title>
8+
<style>
9+
body {
10+
font-family: Arial, sans-serif;
11+
margin: 0;
12+
padding: 0;
13+
display: flex;
14+
flex-direction: column;
15+
height: 100vh;
16+
background-size: cover;
17+
background-position: center;
18+
}
19+
20+
.container {
21+
flex: 1;
22+
display: flex;
23+
justify-content: center;
24+
align-items: center;
25+
text-align: left;
26+
flex-wrap: nowrap;
27+
}
28+
29+
.footer {
30+
background: rgba(0, 0, 0, 0.7);
31+
color: white;
32+
text-align: center;
33+
padding: 20px 0;
34+
}
35+
36+
.footer a {
37+
color: white;
38+
margin: 0 10px;
39+
text-decoration: none;
40+
}
41+
42+
.footer a:hover {
43+
text-decoration: underline;
44+
}
45+
46+
h1,
47+
p {
48+
color: rgb(8, 49, 112);
49+
}
50+
51+
.welcome {
52+
font-size: clamp(1rem, 2vw + 1rem, 2.5rem);
53+
font-weight: bold;
54+
}
55+
56+
span {
57+
font-size: clamp(2rem, 8vw + 1rem, 10rem);
58+
font-weight: bolder;
59+
}
60+
</style>
61+
</head>
62+
63+
<body>
64+
65+
<div class="container">
66+
<div>
67+
<p class="welcome">Hey! This is <bold id="#name"></bold>
68+
</p>
69+
<p><span>MDG SPACE</span></p>
70+
</div>
71+
</div>
72+
73+
<footer class="footer">
74+
<a href="https://linktr.ee/mdgiitr" target="_blank">Linktree</a>
75+
<a href="https://github.com/mdgspace" target="_blank">Github</a>
76+
<a href="https://www.instagram.com/mdgspace" target="_blank">Instagram</a>
77+
<a href="https://www.linkedin.com/company/mdgiitroorkee" target="_blank">LinkedIn</a>
78+
</footer>
79+
80+
</body>
81+
82+
</html>

0 commit comments

Comments
 (0)