-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaze_runner.html
106 lines (91 loc) · 5.08 KB
/
maze_runner.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "utf-8">
<meta name = "viewport" content = "width=device-width, intial-scale = 1">
<link rel = "stylesheet" href = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<title>Radha Patel</title>
<link rel = "icon" type = "image/png" href = "logo-alone.png">
<link rel = "stylesheet" type = "text/css" href = "maze_runner.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<nav class = "navbar navbar-expand-md">
<a class = "navbar-left" href = "index.html">
<img src = "logo-no-text.png" class = "logo-img" alt = "Radha Patel logo">
<span class = "logo-text"><strong>Radha Patel</strong></span>
</a>
<button class = "navbar-toggler navbar-dark" type = "button" data-toggle = "collapse" data-target = "#main-navigaton">
<span class = "navbar-toggler-icon"></span>
</button>
<div class = "collapse navbar-collapse" id = "main-navigation">
<ul class = "navbar-nav">
<li class = "nav-item">
<a class = "nav-link" href = "index.html">Home</a>
</li>
<li class = "nav-item">
<div class = "dropdown">
<a class = "nav-link" href = "projects.html">
<button class = "dropbtn" href = "projects.html">Projects
<i class = "fa fa-caret-down"></i>
</button>
</a>
<div class = "dropdown-content">
<a class = "nav-link" href = "invaders.html">Alien Invaders</a>
<div class = "nav-item active">
<a class = "nav-link" href = "maze_runner.html">Maze Runner</a>
<span class = "sr-only">(current)</span>
</div>
<a class = "nav-link" href = "scheduler.html">Cornell Scheduler</a>
<a class = "nav-link" href = "refugee_analysis.html">Refugee Data Analysis</a>
</div>
</div>
</li>
<li class = "nav-item">
<a class = "nav-link" href = "resume.html">Resume</a>
</li>
<li class = "nav-item">
<div>
<a class = "nav-link" href = "https://wordsforthought22.wordpress.com/" target = "_blank">Blog</a>
</div>
</li>
<li class = "nav-item">
<a class = "nav-link" href = "contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<header class = "page-header header container-fluid">
</header>
<p class = "desc">
This was the final project for my CS 2110: Object-Oriented Programming and Data Structures course
in Spring 2019. A new maze is presented every time, and there are two stages. In the first stage,
the character tries to find the ring by visiting every possible path. Then, the character tries
to collect the most number of coins and get to the exit before running out of steps.
</p>
<p class = "one-line">
The simulation starts like this.
</p>
<a>
<img class = "screenshots" src = "maze_start.png" alt = "The start of the simulation with
a clear maze, a ring, and a character">
</a>
<div class = "linkedin">
<a href = "https://www.linkedin.com/in/radha-patel-881323179" target = "_blank"><i class = "fab fa-linkedin"></i></a>
</div>
<div class = "instagram">
<a href = "https://www.instagram.com/radhadpatel22/?hl=en" target = "_blank"><i class = "fab fa-instagram"></i></a>
</div>
<div class = "facebook">
<a href = "https://www.facebook.com/profile.php?id=100004242016207" target = "_blank"><i class = "fab fa-facebook-square"></i></a>
</div>
<div class = "github">
<a href = "https://github.com/radhadpatel" target = "_blank"><i class = "fab fa-github"></i></a>
</div>
</body>
</html>