Skip to content

Commit 8325b06

Browse files
committed
Simple coming soon page
0 parents  commit 8325b06

File tree

5 files changed

+219
-0
lines changed

5 files changed

+219
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# gitignore

LICENSE.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2017 JSFullstack.it
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# jsfulstack-it.github.io

index.html

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!doctype html>
2+
3+
<html lang="en">
4+
<head>
5+
<meta charset="utf-8">
6+
7+
<title>JSFullStack.it</title>
8+
<meta name="description" content="The HTML5 Herald">
9+
<meta name="author" content="SitePoint">
10+
11+
<style>
12+
body {
13+
background-color: #27282a;
14+
text-align: center;
15+
color: #eee;
16+
font-family: sans-serif;
17+
text-shadow: 0px 4px #6f3f3f;
18+
}
19+
h1 {
20+
font-weight: bold;
21+
font-size: 3em;
22+
}
23+
img {
24+
border-radius: 50%;
25+
border: 10px solid #eee;
26+
margin: 30px auto 20px auto;
27+
width: 200px;
28+
height: 200px;
29+
box-shadow: 0 3px 5px #111;
30+
}
31+
32+
</style>
33+
34+
<!--[if lt IE 9]>
35+
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
36+
<![endif]-->
37+
</head>
38+
<body>
39+
<img src="./jsfslogo.svg"/>
40+
<h1>Coming Soon...</h1>
41+
</body>
42+
</html>

jsfslogo.svg

+168
Loading

0 commit comments

Comments
 (0)