Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<link href="BirdOnAWireEspresso.jpg" rel="shortcut icon">
<title> Events</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel = "stylesheet" href= "BirdStyle.css">
<link rel="stylesheet" href="/lib/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster">
<link rel="stylesheet" type="text/css" href="NavBar.css">
body {margin: 0;}
ul.sidenav {
list-style-type: none;
margin: 0;
padding: 0;
width: 25%;
background-color: #f1f1f1;
position: fixed;
height: 100%;
<!DOCTYPE html>
<html>
<head>
<link href="BirdOnAWireEspresso.jpg" rel="shortcut icon">
<title> Contact </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel = "stylesheet" href= "BirdStyle.css">
<link rel="stylesheet" href="/lib/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster">
<link rel="stylesheet" type="text/css" href="NavBar.css">
body{
background-image: url(Birds.jpg);
background-position: center;
background-color: #cccccc;
font-family: monospace;, courier new;
font-size: 12px;
}
h1{
<!DOCTYPE html>
<html>
<head>
<link href="BirdOnAWireEspresso.jpg" rel="shortcut icon">
<title> Bird on a Wire Espresso </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel = "stylesheet" href= "BirdStyle.css">
<link rel="stylesheet" href="/lib/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster">
<link rel="stylesheet" type="text/css" href="NavBar.css">
<!DOCTYPE html>
<html>
<head>
<link href="BirdOnAWireEspresso.jpg" rel="shortcut icon">
<title> Bird on a Wire Espresso </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel = "stylesheet" href= "BirdStyle.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster">
<link rel="stylesheet" type="text/css" href="NavBar.css">
<!DOCTYPE htlm>
<html>
<head>
<link href="https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/SpaceNeedleTopClose.jpg/220px-SpaceNeedleTopClose.jpg" rel="shortcut icon">
<title>Events</title>
<link href="../css/RestaurantStyle.css" rel="stylesheet" type="text/css"><!-- linked to the style sheet-->
<style>
img {
float: right;
}
@cwake
cwake / Test.cs
Last active February 4, 2017 01:35
using System;
namespace _10_10_Test
{
class Test {
static void Main (string[] args) {
string playerName = "";//set empty string for the players namespace
bool endGame= false;
using System;
namespace p1010
{
class TicTacToe { // setting up the TicTacToe class
static int [,] board; // initialize the board with array
string playerName; //set up player name
public TicTacToe(int player, string playerName){ //accept player
PlayerName = playerName;
using System;
class p739
{
static void Main(string[] args)
{
Console.WriteLine("Enter 3 numbers between 1 and 30");
string[] tokens = Console.ReadLine().Split();
int a = int.Parse(tokens[0]);