-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (56 loc) · 2.89 KB
/
index.html
File metadata and controls
68 lines (56 loc) · 2.89 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
68
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tag is used for providing information to the Search Engines -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Portfolio website for the Devs Collab">
<meta name="keywords" content="devscollab, devs, collab, portfolio, developers, android, web, digital">
<title>Devs Collab</title>
<link rel="stylesheet" href="css/main.css">
<!-- Favicon Link -->
<link rel="shortcut icon" href="images/favicon-circ-dark.png" type="image/PNG">
<!-- Awesome Fonts Link to StyleSheet -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<!-- Material Css Link -->
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
</head>
<body>
<div class="container main-container">
<h1>DevsCollab</h1>
<div class="card links-card">
<button class="btn link-btn" onclick="newLink('https://forms.gle/cXv8tAforb1em5Kj9')">
Become A Contributor <i class="fas fa-external-link-alt"></i>
</button>
<button class="btn link-btn" onclick="newLink('https://github.com/devscollab/devscollab.github.io')">
Github Repository <i class="fas fa-external-link-alt"></i>
</button>
<button class="btn link-btn" onclick="newLink('https://discord.gg/JfKmqUh')">
Join The Discord Server <i class="fas fa-external-link-alt"></i>
</button>
<div class="card-action card-footer">
Think of this as a playground where no matter what your skill level, you can contribute to this project and keep in mind that breaking things doesn't matter, keep learning.
</div>
</div>
</div>
<div class="footer">
<div class="copyright">
© 2019 DevsCollab
</div>
<div class="footer-links">
<a href="https://github.com/devscollab/devscollab.github.io/blob/master/README.md" target="_blank">
Get Started <i class="fas fa-external-link-alt"></i>
</a>
<a href="https://github.com/devscollab/devscollab.github.io/blob/master/CODE_OF_CONDUCT.md" target="_blank">
Code of Conduct <i class="fas fa-external-link-alt"></i>
</a>
<a href="https://github.com/devscollab/devscollab.github.io/blob/master/LICENSE" target="_blank">
License <i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>