-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguides.html
More file actions
67 lines (64 loc) · 2.72 KB
/
guides.html
File metadata and controls
67 lines (64 loc) · 2.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Simple Website</title>
<link rel="stylesheet" href="./css/styles.css" />
<style> @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); </style>
</head>
<!--The Roboto font is linked in the head above^ I just used the embed link from the google api site-->
<body>
<!--This header section is just a basic navigation
bar that sticks to the top of the page with basic file linking.-->
<header>
<h1>Raj's Garage</h1>
<nav>
<ul>
<li><a href="./index.html">Garage</a></li>
<li><a href="./guides.html">Guides</a></li>
<li><a href="./about.html">Ranks</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href="./times.html">Homework3 - Times</a></li>
<li><a href="./scrabble.html">Homework5 - Scrabble</a></li>
</ul>
</nav>
</header>
<main>
<h1>Basic Rotation guide</h1>
<h2>Step 1:<br> Don't Ballchase</h2>
<h2>Step 2:<br> Don't Ballchase</h2>
<h2>Step 3:<br> No, really..... don't</h2>
<h2>Core Positions:</h2>
<p>There aren't any official positions in this game, because that's
inneficient. Instead, all players must be able to perform all 3 major positions.
1st, 2nd, and 3rd man. Obviously in doubles and solos the number of roles decreases. lol.
1st Man is the person closest to the ball, and their job is to apply pressure forwards.
2nd Man is the follow up. Their job is to prepare to contest the next open challenge.
The third man acts as the defender, planning for the worst touch and covering net. These
roles are the basis of all rotating in Rocket League no matter the mode.</p>
<h2>How to Rotate</h2>
<p>Each player needs to play, planning to move up in rank from 3rd to 2nd to first, and back to third again.
So on, So forth. This neverending cycle is what we call rotation in this game. After going for the ball during a challenge,
you rotate out of your position to boost and then back into play.
</p>
</main>
<footer>
<p>© Raj's Desk</p>
<p>
<a href="https://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="https://jigsaw.w3.org/css-validator/images/vcss"
alt="Valid CSS!" />
</a>
</p>
<p>
<a href="https://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="https://jigsaw.w3.org/css-validator/images/vcss-blue"
alt="Valid CSS!" />
</a>
</p>
</footer>
</body>
</html>