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> | |
| <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"> |
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> | |
| <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"> |
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
| body{ | |
| background-image: url(Birds.jpg); | |
| background-position: center; | |
| background-color: #cccccc; | |
| font-family: monospace;, courier new; | |
| font-size: 12px; | |
| } | |
| h1{ | |
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> | |
| <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"> |
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> | |
| <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"> |
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 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; | |
| } |
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
| 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; | |
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
| 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; |
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
| 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]); |
NewerOlder