Skip to content

Instantly share code, notes, and snippets.

View melanyss's full-sized avatar
🚀
Building awesome projects

Melanys melanyss

🚀
Building awesome projects
View GitHub Profile
@melanyss
melanyss / loader.html
Created May 19, 2020 12:51 — forked from madcodertyson/loader.html
create a loader for your website using css and html
<html>
<head>
<title>Loader</title>
<meta name="viewport" content="width=device-width initial-scale=1">
<style>
.loader{
margin-left: 400px;
margin-top: 250px;
border: 16px solid #0058ff;
border-bottom: 16px solid #0058ff;
@melanyss
melanyss / typewriter.html
Created May 19, 2020 12:50 — forked from madcodertyson/typewriter.html
Create a typing effect in html
<html>
<head>
<title>Type writing</title>
<style>
.btn{
border: none;
background-color: #048bff;
width: 90px;
height: 40px;
@melanyss
melanyss / index1.php
Created May 19, 2020 12:46 — forked from madcodertyson/index1.php
Create login form using php
<!DOCTYPE html>
<html>
<?php
session_start();
$username= "admin";
$password= "password";
if (isset($_SESSION['loggedin']) && $_SESSION['loggedin'] == false) {
header("Location: success.php");