forked from meenakshiiyer2531/Rubik-Cube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
101 lines (97 loc) · 4.08 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About The Game - Rubik Cube</title>
<link rel="stylesheet" href="about.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<a href="index.html" class="btn--about">Back to Game</a>
</header>
<div class="content"
<h1 class="text--title" style="text-align: center;">
<span>About The Game</span>
<br>
</h1>
<br>
</div>
<div class="content">
<div class="text">
<div class="about-text--content">
<p>This website is dedicated to providing you with the best Rubik's Cube solving experience. Our team is passionate about puzzles and games, and we strive to create tools and resources that enhance your enjoyment and skill development.</p>
<p>Whether you're a beginner or an experienced solver, we hope you find our website helpful and enjoyable. Feel free to explore the various features and settings of our Rubik's Cube solver and let us know if you have any feedback or suggestions!</p>
<br>
<br>
<h2 class ="subheading">About Rubik's Cubes</h2>
<p>Welcome to the "About" page for Rubik's Cubes! Here, you'll find comprehensive information about Rubik's Cubes, including their history, basic concepts, solving methods, and more.</p>
<br>
<br>
<h2 class="subheading">History</h2>
<p>The Rubik's Cube, invented by Ernő Rubik in 1974, is a 3D combination puzzle that has fascinated millions of people worldwide. Originally called the "Magic Cube," it gained immense popularity after being licensed to the Ideal Toy Corporation in 1980 and rebranded as the "Rubik's Cube."</p>
<br>
<br>
<h2 class="subheading">Basic Concepts</h2>
<p>A standard Rubik's Cube consists of six faces, each covered by nine stickers of one of six solid colors: white, red, blue, orange, green, and yellow. The goal is to solve the cube by rotating the faces until each face is a solid color.</p>
<br>
<br>
<h2 class="subheading">Solving Methods</h2>
<p class="subtopic">There are several methods for solving Rubik's Cube, including:</p>
<ul class="subtopic">
<li>Fridrich Method (CFOP)</li>
<li>BEGINNER Method</li>
<li>Roux Method</li>
<li>ZB Method</li>
</ul>
<br>
<br>
<h2 class="subheading">Advanced Techniques</h2>
<p class="subtopic">Advanced cubers often utilize techniques such as:</p>
<ul class="subtopic">
<li>OLL (Orientation of Last Layer)</li>
<li>PLL (Permutation of Last Layer)</li>
<li>F2L (First Two Layers)</li>
<li>X-Cross</li>
<li>OLLCP (OLL plus Corner Permutation)</li>
</ul>
<br>
<br>
<h2 class="subheading">Formulas and Algorithms</h2>
<br>
<div class="formula">
<h3>The Cross</h3>
<p>Formula: <code>F R U R' U' F'</code></p>
</div>
<div class="formula">
<h3>First Layer Corners</h3>
<p>Formula: <code>R U R' U R U2 R'</code></p>
</div>
<div class="formula">
<h3>Second Layer Edges (F2L)</h3>
<p>Formula: <code>R U R' U' R U' R'</code></p>
</div>
<div class="formula">
<h3>Orientation of Last Layer (OLL)</h3>
<p>Formula: <code>F R U R' U' F'</code></p>
</div>
<div class="formula">
<h3>Permutation of Last Layer (PLL)</h3>
<p>Formula: <code>R U2 R' U' R U R' U' R U' R'</code></p>
</div>
<br>
<br>
<h2 class="subheading">How to Play Rubik's Cube?</h2>
<br>
<div style="display: flex; justify-content: center;">
<iframe width="1500" height="700" src="https://www.youtube.com/embed/E2SZgptK4oM" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<footer class="footer">
<p class="text--footer">© 2024 Rubik-Cube</p>
</footer>
</body>
</html>