forked from kaixiongg/GitHub-Practice-For-All
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (94 loc) · 3.43 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./style/style.css">
<title>Collaboration Effort</title>
</head>
<body>
<div class="container">
<div class="top-navbar">
<div class="menu">
<a href="#contributors">Contributors</a>
</div>
<div class="menu">
<a href="#about">About</a>
</div>
<div class="menu">
<a href="#connect">Connect</a>
</div>
<div class="menu">
<a href="#contact">Contact</a>
</div>
<div class="menu">
<a href="#faq">FAQ</a>
</div>
<div class="menu">
<a href="#resources">Resources</a>
</div>
<div class="menu projects">
<a href="#projects">Projects</a>
<div class="subMenu">
<div class="sub-sub">
<a href="#">Project 1</a>
</div>
<div class="sub-sub">
<a href="#">Project 2</a>
</div>
</div>
</div>
</div>
<main>
<section id="about">
<h2>About</h2>
Github Practice for All was started with the intention of getting some practice in using Git and GitHub and contributing to open source!
</section>
<section id="connect">
<h2>Connect</h2>
Want to contribute or practice Git, too? Find us on <a href="https://github.com/RomchyFCC/GitHub-Practice-For-All">
<img src="img/github-logo.png" alt="Github Logo" width="25" height="25"> Github
</a>!
</section>
<section id="contact">
<h2>Contact</h2>
Contact us on <a href="https://forum.freecodecamp.org/">freeCodeCamp's forum</a>! Our usernames are <a href="https://forum.freecodecamp.org/u/DarrenfJ">DarrenfJ</a> and <a href="https://forum.freecodecamp.org/u/RomchyFCC">RomchyFCC</a>.
</section>
<section id="faq">
<h2>FAQ</h2>
<h3>How should I get started?</h3>
A good place to start is the reading through the resources in the section below, or our GitHub's <a href="https://github.com/RomchyFCC/GitHub-Practice-For-All/blob/master/README.md">README</a>.
</section>
<section id="resources">
<h2>Resources</h2>
<ul>
<li>
<a href="https://help.github.com/articles/fork-a-repo/">Fork a repo</a>
</li>
<li>
<a href="https://help.github.com/articles/cloning-a-repository/">Cloning a repo</a>
</li>
<li>
<a href="https://help.github.com/articles/about-pull-requests/">Pull Requests</a>
</li>
<li>
<a href="https://devdocs.io">DevDocs</a>
</li>
<li>
<a href="https://github.com/JABedford/Front-End-Bible">the Front End Bible</a>
</li>
<li>
<a href="https://guide.freecodecamp.org/">fCC Library</a>
</li>
</ul>
</section>
<section id="contributors">
<h2>Contributors</h2>
Check out all of our <a href="./contributors.html">contributors!</a>
</section>
</main>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="./scripts/script.js"></script>
</body>
</html>