-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (59 loc) · 2.54 KB
/
index.html
File metadata and controls
59 lines (59 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.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=Poppins:ital,wght@0,200;0,400;0,600;0,700;1,100&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>CFOP Trainer</title>
<link rel="icon" href="https://i.pinimg.com/originals/e9/ea/11/e9ea1149359a3d087f5bd946372ab840.png">
<script defer src="code.js"></script>
</head>
<body>
<header class="header">
<nav>
<a href="index.html"><img src="images/cfopLogo.png"></a>
<div class="nav-links">
<ul class="navigation">
<li><a href="index.html">HOME</a></li>
<li><a href="CFOP.html">CFOP</a></li>
<li><a href="F2L.html">F2L</a></li>
<li><a href="OLL.html">OLL</a></li>
<li><a href="PLL.html">PLL</a></li>
</ul>
</div>
</nav>
</header>
<main>
<div class="title">
<div class="homeTitle">
<h1>Welcome to CFOP Trainer</h1>
<p>Learning CFOP has never been easier</p>
<a href="CFOP.html" class="learn-btn">Learn About CFOP</a>
</div>
</div>
<div class="infoHome">
<div>
<p>
Choose specific algorithms to suit your needs and build a personalized practice environment.
</p>
</div>
<img src="images/cubeTransition.jpg" class="infoImg">
</div>
</main>
<footer class="footer">
<h4>Check Our Social Media!</h4>
<div class="icons">
<i class="fa fa-facebook"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-linkedin"></i>
</div>
<a href="https://noahtylee.github.io/" target=”_blank”>Find More Here</a>
</footer>
</body>
</html>