Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 68496f5

Browse files
committed
Add website
0 parents  commit 68496f5

File tree

4 files changed

+55
-0
lines changed

4 files changed

+55
-0
lines changed

favicon.ico

229 KB
Binary file not shown.

index.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'>
5+
<title>Devbox</title>
6+
<meta name="csrf-param" content="authenticity_token" />
7+
<meta name="csrf-token" content="7pAEtjwlXvKiXMym+Pu/Yfy/vMlfZHH8VSvDtNJieupr1y8m9EmeQpPjM2TKjl/39gGBZwntH/4s9pcFyEAA+w==" />
8+
<meta name="csp-nonce" />
9+
<link rel="stylesheet" href="style.css">
10+
<link rel="icon" type="image/x-icon" href="favicon.ico">
11+
</head>
12+
<body>
13+
<main>
14+
<img width="400" height="600" src="logo.svg" />
15+
<p>
16+
17+
</p>
18+
<p>+46 (0)73 039 5208<p/>
19+
</main>
20+
</body>
21+
</html>

logo.svg

+1
Loading

style.css

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
html, body {
2+
height: 100%;
3+
width: 100%;
4+
padding: 0;
5+
margin: 0;
6+
}
7+
8+
body {
9+
color: #444;
10+
font-family: sans-serif;
11+
}
12+
13+
a {
14+
color: #444;
15+
}
16+
17+
p {
18+
margin-top: 0;
19+
margin-bottom: 0.3em;
20+
}
21+
22+
main {
23+
position: relative;
24+
top: 50%;
25+
transform: translateY(-50%);
26+
text-align: center;
27+
}
28+
29+
main img {
30+
width: 400px;
31+
height: 600px;
32+
margin-bottom: 30px;
33+
}

0 commit comments

Comments
 (0)