-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit af816cb
Showing
6 changed files
with
192 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Who is Sprime? | Sprimed</title> | ||
<link rel="stylesheet" type="text/css" href="css/style.css"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
</head> | ||
<body> | ||
<div class="body"> | ||
<header> | ||
<h2>About Sprime</h2> | ||
</header> | ||
<p class="aboutMe">I am Sprime, <br> | ||
<br> | ||
A fun-loving and adventure craving Nigerian. <br> | ||
<br> | ||
The name Sprime was created from a combination of two names I like. <br> | ||
<br> | ||
Sensei meaning Teacher, <br> | ||
<br> | ||
And Prime from one of my favorite movie characters Optimus Prime. <br> | ||
</p> | ||
<!--<p>You can say hello below.</p> | ||
<form action="#" method="post" id="contactMe"> | ||
<fieldset form="contactMe"> | ||
<legend>Hi</legend> | ||
<label for="name">Your Name: </label> | ||
<input id="name" type="text" name="senderName" placeholder="Jon Snow" required autocomplete="name"> | ||
<br /> | ||
<label for="email">Your eMail: </label> | ||
<input id="email" type="email" name="senderEmail" placeholder="[email protected]" required autocomplete="email"> | ||
<br /> | ||
<label for="message">Your Message: </label> | ||
<textarea id="message" maxlength="100" name="senderMessage" placeholder="In 100 words, talk to me" rows="10" cols="25"></textarea> | ||
<br /> | ||
<input type="submit" value="Send"> | ||
</fieldset> | ||
</form>--> | ||
</div> | ||
<footer> | ||
<p>You've just been <a href="http://sprimed.com">Sprimed!</a></p> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Hello World | I'm Sprime</title> | ||
<link rel="stylesheet" type="text/css" href="css/style.css"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="description" content="A Nigerian adventurer, teacher and designer. Come let us make Nigeria great again."> | ||
</head> | ||
|
||
<body> | ||
<div class="body"> | ||
<section> | ||
<header> | ||
<h2>Hi I'm <a href="about-sprime.html">Sprime</a>. | ||
</h2> | ||
<p>I love experiencing and creating beautiful user experiences and going on adventures.</p> | ||
</header> | ||
<div class="blurb"> | ||
<p> | ||
I also love expressing myself via <a href="https://medium.com/@sprime" title="Sprime on Medium" target="_blank">words and pictures</a>, and making the world a better place by <a href="https://github.com/osioke" title="My GitHub Page" target="_blank">working on open source projects</a> and other public service projects<!--for my tutorial and volunteering picture page which should also be on sprimed.com-->. | ||
</p> | ||
<p> | ||
I currently enjoy being the Community Manager for <a href="https://devcenter.co" title="Devcenter's Home Page" target="_blank">Devcenter</a>'s Open Source Community <a href="https://devcenter-square.github.io" title="Square's Project Site" target="_blank">Square</a>. I also give user experience design reviews from time to time. | ||
</p> | ||
<br> | ||
<p>You have something you'd like us to work on? Send me a mail at <a href="mailto:[email protected]" title="Contact Me" target="_blank">[email protected]</a>.</p> | ||
</p> | ||
</div> | ||
</section> | ||
</div> | ||
<footer> | ||
<p>You've just been <a href="https://sprimed.com">Sprimed!</a></p> | ||
</footer> | ||
</body> | ||
|
||
</html> |