From af816cb1ade54181a57bc175b64ef31fd95f60dd Mon Sep 17 00:00:00 2001 From: Osioke Date: Sat, 21 Jan 2017 11:09:23 +0100 Subject: [PATCH] initial website version --- .gitignore | 41 +++++++++++++++++++++++++++++++++++++++++ LICENSE | 21 +++++++++++++++++++++ README.md | 5 +++++ about-sprime.html | 45 +++++++++++++++++++++++++++++++++++++++++++++ css/style.css | 42 ++++++++++++++++++++++++++++++++++++++++++ home.html | 38 ++++++++++++++++++++++++++++++++++++++ 6 files changed, 192 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 about-sprime.html create mode 100644 css/style.css create mode 100644 home.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0bf660d --- /dev/null +++ b/.gitignore @@ -0,0 +1,41 @@ +#Self defined files # +##################### +*.test + +# Compiled source # +################### +*.com +*.class +*.dll +*.exe +*.o +*.so + +# Packages # +############ +# it's better to unpack these files and commit the raw source +# git has its own built in compression methods +*.7z +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip + +# Logs and databases # +###################### +*.log +*.sql +*.sqlite + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..85a0c77 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 Osioke Itseuwa + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..d6410c0 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# sprimed.com +My personal website which I plan to make completely with *only* HTML and CSS, +and *no JS*. + +Wish me luck :v: \ No newline at end of file diff --git a/about-sprime.html b/about-sprime.html new file mode 100644 index 0000000..7e1afee --- /dev/null +++ b/about-sprime.html @@ -0,0 +1,45 @@ + + + + + Who is Sprime? | Sprimed + + + + +
+
+

About Sprime

+
+

I am Sprime,
+
+ A fun-loving and adventure craving Nigerian.
+
+ The name Sprime was created from a combination of two names I like.
+
+ Sensei meaning Teacher,
+
+ And Prime from one of my favorite movie characters Optimus Prime.
+

+ +
+ + + \ No newline at end of file diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..a8e43bb --- /dev/null +++ b/css/style.css @@ -0,0 +1,42 @@ +html, body { + font-family: monospace; + display: flex; + min-height: 100vh; + flex-flow: column; + background-color: black; + color: white; +} + +.body { + flex: 1; + margin: 2rem 3rem; +} + +input { + font-family: monospace; +} + +fieldset { + display: inline-flex; +} + +footer { + flex: 0; + align-self: center; +} + +.aboutMe { + margin-top: 0px; +} + +a { + text-decoration: none; +} + +a:visited { + color: gray; +} + +a:hover { + color: white; +} \ No newline at end of file diff --git a/home.html b/home.html new file mode 100644 index 0000000..83617fe --- /dev/null +++ b/home.html @@ -0,0 +1,38 @@ + + + + + + Hello World | I'm Sprime + + + + + + +
+
+
+

Hi I'm Sprime. +

+

I love experiencing and creating beautiful user experiences and going on adventures.

+
+
+

+ I also love expressing myself via words and pictures, and making the world a better place by working on open source projects and other public service projects. +

+

+ I currently enjoy being the Community Manager for Devcenter's Open Source Community Square. I also give user experience design reviews from time to time. +

+
+

You have something you'd like us to work on? Send me a mail at hello@sprimed.com.

+

+
+
+
+ + + + \ No newline at end of file