Skip to content

Instantly share code, notes, and snippets.

View ahmed-issa-mohd's full-sized avatar

ahmed-issa-mohd

View GitHub Profile
@ahmed-issa-mohd
ahmed-issa-mohd / index.html
Created December 20, 2020 20:56
Netflix Landing Page Clone
<header class="showcase">
<div class="showcase-top">
<img src="https://i.ibb.co/r5krrdz/logo.png" alt="" />
<a href="#" class="btn btn-rounded">Sign In</a>
</div>
<div class="showcase-content">
<h1>See what's next</h1>
<p>Watch anywhere. Cancel Anytime</p>
<a href="#" class="btn btn-xl"
>Watch Free For 30 Days <i class="fas fa-chevron-right btn-icon"></i
@ahmed-issa-mohd
ahmed-issa-mohd / index.html
Created December 20, 2020 20:47
Netflix Landing Page Clone
<header class="showcase">
<div class="showcase-top">
<img src="https://i.ibb.co/r5krrdz/logo.png" alt="" />
<a href="#" class="btn btn-rounded">Sign In</a>
</div>
<div class="showcase-content">
<h1>See what's next</h1>
<p>Watch anywhere. Cancel Anytime</p>
<a href="#" class="btn btn-xl"
>Watch Free For 30 Days <i class="fas fa-chevron-right btn-icon"></i
@ahmed-issa-mohd
ahmed-issa-mohd / brad.html
Last active July 15, 2020 11:56
JavaScript BookList App
<div class="container mt-4">
<h1 class="display-4 text-center">
<i class="fas fa-book-open text-primary"></i> My<span class="text-primary">Book</span>List</h1>
<form id="book-form">
<div class="form-group">
<label for="title">Title</label>
<input type="text" id="title" class="form-control">
</div>
<div class="form-group">
<label for="author">Author</label>

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@ahmed-issa-mohd
ahmed-issa-mohd / index.html
Created April 24, 2020 14:44
pure css flexbox responsive navbar
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<nav class="navbar">
<label class="navbar-toggle" id="js-navbar-toggle" for="chkToggle">
@ahmed-issa-mohd
ahmed-issa-mohd / index.html
Created April 24, 2020 14:42
pure css flexbox responsive navbar
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<nav class="navbar">
<label class="navbar-toggle" id="js-navbar-toggle" for="chkToggle">
@ahmed-issa-mohd
ahmed-issa-mohd / index.html
Created February 3, 2020 06:25
JavaScript BookList App
<div class="container mt-4">
<h1 class="display-4 text-center">
<i class="fas fa-book-open text-primary"></i> My<span class="text-primary">Book</span>List</h1>
<form id="book-form">
<div class="form-group">
<label for="title">Title</label>
<input type="text" id="title" class="form-control">
</div>
<div class="form-group">
<label for="author">Author</label>
@ahmed-issa-mohd
ahmed-issa-mohd / index.html
Created December 14, 2019 09:29
JavaScript / jQuery CRUD App
<div class="container">
<div class="row">
<div class="col-md-4">
<h3>ADD USER</h3>
<form id="addUser" action="">
<div class="form-group">
<input class="form-control" type="text" name="name" placeholder="Name" required>
</div>
<div class="form-group">
<input class="form-control" type="text" name="address" placeholder="Address" required>