Skip to content

Instantly share code, notes, and snippets.

View NazimCodes's full-sized avatar

Nazim Nazari NazimCodes

View GitHub Profile
@NazimCodes
NazimCodes / GuessGame.cpp
Last active December 28, 2017 04:32
(User vs. Computer) Guess the Number Game (re-do)
/* FrankT ft. NazimCodes collab
December 2017, for www.happycodings.com */
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
@NazimCodes
NazimCodes / SnakeGame.cpp
Last active September 5, 2025 21:24
Snake Game made out of C++
/* Snake Game using C++
developed by TheKittyKat,
improved by Nazim Nazari
December 2017 */
#include <iostream>
#include <conio.h>
using namespace std;
void run();
@NazimCodes
NazimCodes / index.js
Created December 6, 2017 13:59
Javascript for login.html
$('.message a').click(function(){
$('form').animate({height: "toggle", opacity: "toggle"}, "slow");
});
@NazimCodes
NazimCodes / login.css
Created December 6, 2017 13:59
css file for login.html
@import url(https://fonts.googleapis.com/css?family=Roboto:300);
.login-page {
width: 360px;
padding: 8% 0 0;
margin: auto;
}
.form {
position: relative;
z-index: 1;
@NazimCodes
NazimCodes / login.html
Created December 6, 2017 12:05
Responsive combined login and register form
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Test Login Form</title>
<link rel="stylesheet" href="css/login.css">
@NazimCodes
NazimCodes / sidebar.html
Created December 6, 2017 12:03
Responsive sidebar with multiple buttons (Responsive to display size and mouse hover)
<html><head>
<link rel="icon" type="image/gif/png" href="assets/icon.png">
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<style>