-
Notifications
You must be signed in to change notification settings - Fork 0
/
blackjack.html
91 lines (90 loc) · 5.13 KB
/
blackjack.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Angelica is a front end developer based in Connecticut. Experienced in Javascript, jQuery, and React.js. Loves dogs and collecting sneakers." />
<title>Angelica (Angie) Camacho | Front End Developer</title>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,500,700|PT+Sans+Narrow:700" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<link href="css/hamburgers.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<!-- Nav -->
<nav class="nav-subpage">
<div class="nav-left">
<a href="index.html" class="nav-logo">AAC</a>
</div>
<div class="nav-right">
<a href="index.html#about" class="nav-desktop">About</a>
<a href="index.html#featured-projects" class="nav-desktop">Projects</a>
<a href="#contact" class="nav-desktop">Contact</a>
<a href="https://docs.google.com/document/d/1p46mh-ETxsmMYgRzY1581z6JbNiDD0LuPtdet4r5t10/edit?usp=sharing" target="_blank" class="nav-resume nav-desktop"><i class="fas fa-file-alt"></i> Resume</a>
<button class="hamburger hamburger--squeeze" type="button">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
</div>
<div class="nav-responsive">
<a href="index.html#about" class="nav-desktop">About</a>
<a href="index.html#featured-projects" class="nav-desktop">Projects</a>
<a href="#contact" class="nav-desktop">Contact</a>
<a href="https://docs.google.com/document/d/1p46mh-ETxsmMYgRzY1581z6JbNiDD0LuPtdet4r5t10/edit?usp=sharing" target="_blank">Resume</a>
<a href="https://github.com/Camacho-A" target="_blank" class="nav-contact"><i class="fab fa-github fa-lg"></i></a>
<a href="https://www.linkedin.com/in/camachoangelicaa/" target="_blank" class="nav-contact"><i class="fab fa-linkedin fa-lg"></i></a>
</div>
</nav>
<!-- Main section -->
<a href="dOTBEATS.html" class="project-arrow back"><i class="fas fa-caret-left"></i></a>
<a href="sneakerevolution.html" class="project-arrow forward"><i class="fas fa-caret-right"></i></a>
<div class="section portfolio">
<div class="flex-grid">
<div>
<h1>BlackJack The Game (21)</h1>
<h4>HTML, CSS, JavaScript, jQuery</h4>
<h5><b>Role:</b> Front End Developer</h5>
<hr>
</div>
<div class="button">
<a href="https://project-1-blackjack.vercel.app/" target="_blank">Live Site</a>
<a href="https://github.com/Camacho-A/blackjack_game" target="_blank">Github</a>
</div>
<p>Using the deck of cards API I will create a version of the game BlackJack a.k.a 21. The object of the game is to get to 21 and/or as close to 21 to win, anything over 21 you lose. Cards are dealt at random and either Player can win or draw.
<br>
How to play: Click on deal to generate a card for player 1 and the computer. Hitting deal again will generate the next card for a "Hit Me". Player will continue until someone wins. </p>
<div class="section portfolio">
<p>Implemented HTML, CSS, and Javascript to build a dynamic and interactive game.
Utilized JavaScript to dynamically manipulate HTML and CSS, resulting in a seamless and engaging user experience.
Used Deck of Cards API to generate cards with the click of a button.
Utilized Git control during the production of the application with frequent commits until deployment. </p>
</div>
</div>
</div>
<div class="portfolio-images">
<img src="img/blackjack-1.png">
</div>
<!-- Project nav buttons -->
<div class="section project-nav">
<p><a href="index.html#featured-projects">Back to all projects</a></p>
<p><a href="dotbeats.html">Previous</a> | <a href="sneakerevolution.html">Next</a></p>
</div>
<!-- Footer -->
<footer id="contact">
<div class="footer-content">
<h4>Let's get in touch.</h4>
<p><a href="https://github.com/Camacho-A" target="_blank"><i class="fab fa-github fa-lg"></i> <span class="icon-label">Camacho-A</span></a></p>
<p><a href="https://www.linkedin.com/in/camachoangelicaa/" target="_blank"><i class="fab fa-linkedin fa-lg"></i> <span class="icon-label">camachoangelicaa</span></a></p>
<p><a href="mailto:[email protected]"><i class="fas fa-envelope fa-lg"></i> <span class="icon-label">[email protected]</span></a></p>
<p><a href="https://docs.google.com/document/d/1p46mh-ETxsmMYgRzY1581z6JbNiDD0LuPtdet4r5t10/edit?usp=sharing" target="_blank"><i class="fas fa-file-alt fa-lg"></i> <span class="icon-label">Download Resume</span></a></p>
</div>
</footer>
<!-- Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="js/script.js" type="text/javascript"></script>
</body>
</html>