-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
61 lines (55 loc) · 3.47 KB
/
portfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Simon Tian's Portfolio</title>
<link rel="stylesheet" href="styles/normalize.css" />
<link rel="stylesheet" href="styles/main.css" />
<link rel="icon" href="images/favicon.png" />
</head>
<body id="portfolio">
<header>
<h1>Simon Tian</h1>
</header>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
</ul>
</nav>
<main>
<h1>Portfolio</h1>
<P>List of projects</P>
<ul id="portfolioItems">
<li>
<h2><a href="#">Capstone Team Project</a></h2>
<img class="img1" src="images/portfolio/project1.jpg" />
<p>
This is my csse120 class project, the purpose is to use the keyboard to control the robot car to make the specified action. My design uses the optical sensor at the bottom of the robot car, so that the car can drive along the black line. If the red dot is detected, the car will stop and lift the mechanical arm, then put it down and turn around in place, and finally play the voice of "you win" and the music of victory. At the same time, I also use the acoustic sensor in front of the car to detect the distance from the obstacle. If it is too close to the obstacle, the car will stop automatically.
</p>
</li>
<li>
<h2><a href="#">Taste Of Terre Haute</a></h2>
<img class="img2" src="images/portfolio/project2.jpg" />
<p>
This is a project I did in csse333 class. My project at the time was to develop a software allowed Rose-Hulman students and Terre Haute local restaurant managers to register accounts. Rose-Hulman students can either form groups and enter their preferences and diets to get restaurant and food recommendations. Also, they can give ratings about the menuItem and leave comments. The restaurant manager can manage the restaurant and menu item information, they can see the average score of their restaurant and their menu Items.
</p>
</li>
<li>
<h2><a href="#">Arcade Game</a></h2>
<img class="img3" src="images/portfolio/project3.jpg" />
<p>
This is my csse220 class project, we use the Java language to write this arcade game, we designed the level of the terrain, character patterns, monster patterns, bullet shape and scoring mechanism. When the bullet fired by the character hits the monster, the player's score will increase. When the character is attacked by the monster, he will lose HP and score. When HP or score becomes 0, the game ends. When all the monsters in the current level die, you can enter the next level, and the difficulty of the game will increase with the number of levels. I can't find the game pictures at that time, but I found similar game pictures on the Internet. The picture comes from the website: http://www.liketotally80s.com/2007/03/play-80s-arcade-games/
</p>
</li>
</ul>
</main>
<footer>
You can email me at tianr@rose-hulman.edu
</footer>
<script src="scripts/main.js"></script>
</body>
</html>