Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions index.html
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@
<!-- sharing configuration -->
<!-- Primary Meta Tags -->
<title>Blackjack - Basics - Rocket Academy</title>
<meta name="title" content="YOURNAME's BlackJack Game!">
<meta name="title" content="Eugene Matthew's BlackJack Game!">
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good effort on trying to change bits and piece of HTML and CSS

<meta name="description" content="A fun card game I made myself! 😄💪🌈">

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://rocketacademy.github.io/basics-blackjack/index.html">
<meta property="og:title" content="YOURNAME's BlackJack Game!">
<meta property="og:title" content="Eugene Matthew's BlackJack Game!">
<meta property="og:description" content="A fun card game I made myself! 😄💪🌈">
<meta property="og:image" content="https://ra-web-files.s3.ap-southeast-1.amazonaws.com/basics/basics-blackjack-share-small.jpeg">

<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://rocketacademy.github.io/basics-blackjack/index.html">
<meta name="twitter:title" content="YOURNAME's BlackJack Game!">
<meta name="twitter:title" content="Eugene Matthew's BlackJack Game!">
<meta name="twitter:description" content="A fun card game I made myself! 😄💪🌈">
<meta name="twitter:image" content="https://ra-web-files.s3.ap-southeast-1.amazonaws.com/basics/basics-blackjack-share-small.jpeg">
<meta name="twitter:site" content="@rocketacademyco">
Expand All @@ -54,7 +54,7 @@
font-family: 'Open Sans', sans-serif;
margin-left: 30px;
margin-right: 30px;
background-color:white;
background-color:#FCB772;
color: black; /* sets the font color */
background-image: url(""); /* The image used */
background-position: center; /* Center the image */
Expand All @@ -74,7 +74,7 @@
}

#container {
background-color: pink;
background-color: #FC8672;
margin: 40px auto;
max-width: 800px;
padding: 38px 31px;
Expand All @@ -96,10 +96,11 @@
}

#output-div {
background-color: lightgrey;
background-color: #FCCB72;
margin: 20px auto;
padding: 20px;
width: 100%;
height: 100%;
}

.logo-img {
Expand All @@ -124,15 +125,16 @@ <h1 class="header">
Rocket Academy
<img class="logo-img" src="https://firebasestorage.googleapis.com/v0/b/ftbc11-sample.appspot.com/o/images%2F1-PRIMARY_CRIMSON.png?alt=media&token=ce9e8333-2a45-44be-adb2-1f1bf054adf7" />
</h1>
<h1 class="header">♣️ Basics - Blackjack ️</h1>
<h1 class="header">Eugene Matthew<br>♣️♠️♦️♥️ Game of Blackjack ♣️♠️♦️♥️</h1>
<div id="container">
<p>Input:</p>
<input id="input-field" />
<br />
<button id="submit-button">Submit</button>
<p>Output:</p>
<div id="output-div"></div>
</div>
<div id="output-div">
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good job creating this default message to get your game going!

Welcome to Eugene Matthew's Cards! <br>Click the 'Submit' button to get started!
</div>
<!-- Import program logic -->
<script src="script.js"></script>
<!-- Define button click functionality -->
Expand Down
Loading