-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
110 lines (101 loc) · 5.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon/favicon-16x16.png">
<link rel="manifest" href="./images/favicon/site.webmanifest">
<link rel="mask-icon" href="./images/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/js/bootstrap.min.js" integrity="sha384-o+RDsa0aLu++PJvFqy8fFScvbHFLtbvScb8AjopnFD+iEQ7wo/CG0xlczd+2O/em"
crossorigin="anonymous"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B"
crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.2.0/anime.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chroma-js/1.3.4/chroma.min.js"></script>
<script src="./assets/js/colors.js"></script>
<script src="./assets/js/main.js"></script>
<link rel="stylesheet" href="./assets/css/style.css?ver=1.2">
<title>Favorite Language!</title>
</head>
<body>
<main>
<div class="container text-center" id="main">
<div id="main-content">
<div>
<img src="images/ghfavlang.svg" class="svg responsive-img" id="logo"></img>
</div>
<p class="lang-color-secondary" id="main-text">
Find your favorite coding language!
</p>
<div class="container text-center" id="form-input">
<div class="input-group mb-3" id="input-wrapper">
<input type="text" class="form-control lang-color-secondary" id="user" placeholder="Enter GitHub user!">
</div>
<label id="forks-label" class="checkbox">
<input id="enable-forks" type="checkbox"> Include forks?
</label>
</div>
<div id="profile">
<a id="avatar-link">
<img class="responsive-img" id="avatar">
</a>
<p class="lang-color-secondary" id="username"></p>
<p class="lang-color-primary" id="fav-lang"></p>
</div>
</div>
<div id="about-content">
<div>
<a href="https://github.com/delirumproducts">
<img src="images/dplogo.png" id="dp-logo"></img>
</a>
</div>
<p class="lang-color-primary" id="main-text">
Made with
<i class="fas fa-heart lang-color-secondary"></i> by
<a href="https://github.com/delirumproducts">Delirium Products!</a>
</p>
<div class="row">
<div class="col-md-4 lang-color-primary author">
<a href="https://github.com/fr3fou" id="fr3fou-fav-lang">
<img src="https://github.com/fr3fou.png" class="author-img">
<br> Simo
<br> Aleksandrov
</a>
</div>
<div class="col-md-4 lang-color-primary author d-none d-sm-block d-sm-none d-md-block" id="dp-desc">
Delirium Products is a team, which consists of 2 people - Simo Aleksandrov and Lyubo Lyubchev. One of our favorite chocolate
deserts is called "Delirium", hence the name - Delirium Products. We are both students in the High
School of Mathematics "Baba Tonka" in Ruse, Bulgaria. As of now we are only working with software
development, but plan on moving to hardware, mobile and web development aswell.
</div>
<div class="col-md-4 lang-color-primary author">
<a href="https://github.com/impzero" id="impzero-fav-lang">
<img src="https://github.com/IMPZERO.png" class="author-img">
<br> Lyubo
<br> Lyubchev
</a>
</div>
</div>
<br>
<a href="https://github.com/DeliriumProducts/gh-favlang" class="btn btn-success" id="source-code">
Source code on
<i class="fab fa-github"></i>
</a>
</div>
</div>
</main>
<a href="#" id="about">
<i class="fas fa-angle-double-right"></i>
<br>
</a>
</body>
</html>