-
Notifications
You must be signed in to change notification settings - Fork 171
/
index.html
120 lines (120 loc) · 4.61 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!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">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<title>Collaboration Effort</title>
</head>
<body>
<header>
<div class="center">
<a id="titleLink" href="./">
<p id="title"><i class="fab fa-connectdevelop"></i> Practice for All</p>
<p id="titleContent">A repository to practice forks, pull requests, merges and more.</p>
</a>
<div class="w3-bar w3-border w3-light-grey w3-center" style="font-family:'Comic Sans MS', cursive, sans-serif; font-weight: bold">
<a href="#about" style="width:14.26%" class="w3-bar-item w3-button w3-mobile">About</a>
<a href="#contributors" style="width:14.26%" class="w3-bar-item w3-button w3-mobile">Contributors</a>
<a href="#connect" style="width:14.26%" class="w3-bar-item w3-button w3-mobile">Connect</a>
<a href="#contact" style="width:14.26%" class="w3-bar-item w3-button w3-mobile">Contact</a>
<a href="#faq" style="width:14.26%" class="w3-bar-item w3-button w3-mobile">FAQ</a>
<a href="#resources" style="width:14.26%" class="w3-bar-item w3-button w3-mobile">Resources</a>
<div class="w3-dropdown-hover" style="width:14.26%">
<button class="w3-button">Projects</button>
<div class="w3-dropdown-content w3-bar-block w3-card-4">
<a href="https://victorhills.com/" class="w3-bar-item w3-button">Golf Club</a>
<a href="#" class="w3-bar-item w3-button">Project 2</a>
</div>
</div>
</div>
</div>
</header>
<main>
<div id="about" style="overflow:hidden; background-color: #f5f5f0">
<p id="aboutTitle">About</p>
<p id="aboutContent">Github Practice for All was started with the intention of getting some practice in<br>
using Git and GitHub and contributing to open source!</p>
</div>
<div id="contributors" class="main">
<div class="mainContent">
Contributors
</div>
<div class="mainMiddle">
<div class="mainText">
Check out all of our <a href="./contributors.html">contributors!</a>
</div>
</div>
</div>
<div id="connect" class="main">
<div class="mainContent" style="color:black">
Connect
</div>
<div class="mainMiddle">
<div class="mainText" style="color:black">
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>
</div>
</div>
</div>
<div id="contact" class="main">
<div class="mainContent">
Contact
</div>
<div class="mainMiddle">
<div class="mainText">
<p>
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>.
</p>
</div>
</div>
</div>
<div id="faq" class="main">
<div class="mainContent" style="color:black">
FAQ
</div>
<div class="mainMiddle">
<div class="mainText" style="color:black;">
<p style="font-size:1em; margin-bottom:-0.5em;">How should I get started?</p>
<p style="font-size:0.6em">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></p>
</div>
</div>
</div>
<div id="resources" class="main">
<div class="mainContent" >
Resources
</div>
<div class="mainMiddle">
<div class="mainText" style="font-size:0.7em">
<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>
</div>
</div>
</div>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="./scripts/script.js"></script>
</body>
</html>