Skip to content

Instantly share code, notes, and snippets.

View Deityhub's full-sized avatar
🌍
Making everyday life better

Chizoba Jude Ojini Deityhub

🌍
Making everyday life better
  • 011011010110000101110100011100100110100101111000
View GitHub Profile
@Deityhub
Deityhub / index.html
Created February 13, 2018 16:44
Wikipedia Search Engine
<html>
<head>
<title>Wikipedia Search Engine</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Ojini Chizoba Jude">
<link href="https://fonts.googleapis.com/css?family=Rubik:400" rel="stylesheet">
@Deityhub
Deityhub / index.html
Created February 13, 2018 17:20
Simple Javascript Calculator
<html lang="en">
<head>
<title>Simple Calculator</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Chewy|Monoton|Orbitron|Sedgwick+Ave+Display" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Yatra+One" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
@Deityhub
Deityhub / index.html
Created February 13, 2018 17:20
Random Quote Machine
<head>
<meta charset="utf-8">
<title>Random Quote Generator</title>
<meta name="viewport" content="width=device-width">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Lemonada" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
</head>
<body>
@Deityhub
Deityhub / index.html
Created February 13, 2018 17:21
simon game
<div class="wrap">
<div class="wrap-in">
<div class="rw">
<div class="t-l inline push green unclickable" id='green' onclick="userPlay('green')"></div>
<div class="t-r inline push red but unclickable" id='red' onclick="userPlay('red')"></div>
</div>
<div class="rw">
<div class="b-l inline push yellow unclickable" id='yellow' onclick="userPlay('yellow')"></div>
<div class="b-r inline push blue but unclickable" id='blue' onclick="userPlay('blue')"></div>
</div>
@Deityhub
Deityhub / index.html
Created February 13, 2018 17:21
Twitch Tv Status Checker
<html>
<head>
<meta charset="utf-8">
<meta description="author" content="Ojini Chizoba">
<title>Twitchtv Status App</title>
<link href="https://fonts.googleapis.com/css?family=Baloo+Bhaijaan|Boogaloo|Encode+Sans:600|Handlee|Monoton" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
@Deityhub
Deityhub / index.html
Created February 13, 2018 17:23
Pomodoro Timer
<html lang="en"><head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Pomodoro Timer</title>
<meta name="description" content="Pomodoro Timer | Ojini Chizoba">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Dosis:300,400,600,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
</head>
@Deityhub
Deityhub / index.html
Created February 13, 2018 17:23
TicTacToe | Unbeatable AI
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tic-Tac-Toe Game</title>
<link href="https://fonts.googleapis.com/css?family=Atomic+Age|Pacifico" rel="stylesheet">
</head>
<body>
<div class="board">
@Deityhub
Deityhub / README.md
Created February 21, 2018 04:05 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@Deityhub
Deityhub / index.html
Created May 13, 2018 14:20
How to center a text in the middle of it's containing parent. No matter how one adjust the height or width of the container, it still remains in the middle.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1.0">
/*Link the css file here to see how this code works*/
<link rel="stylesheet" href="style.css" >
<title>JS Bin</title>
</head>
<body>
@Deityhub
Deityhub / react-file-upload.js
Created August 27, 2018 08:16 — forked from AshikNesin/react-file-upload.js
Simple React File Upload
import React from 'react'
import axios, { post } from 'axios';
class SimpleReactFileUpload extends React.Component {
constructor(props) {
super(props);
this.state ={
file:null
}