forked from victornnaji/HacktoberMagazine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (57 loc) · 2.11 KB
/
Copy pathindex.html
File metadata and controls
69 lines (57 loc) · 2.11 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
69
<!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 for the stylesheets -->
<link rel="stylesheet" href="css/nobootstrap.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/fonts.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet" />
<!-- link for the favicon if any -->
<link rel="shortcut icon" type="image/png" href="" />
<!-- title of the page -->
<title>HacktoberMagazine</title>
</head>
<!-- body starts -->
<body>
<!-- body html starts here -->
<div class="">
<div class="announcement">
<div class="annoucement-icon">
<svg class="icon icon-notification">
<use xlink:href="img/sprite.svg#icon-notification"></use>
</svg>
</div>
<h2 class="announcement__text">
Remember to
<a href="https://hacktoberfest.digitalocean.com/profile">Register</a>
to be eligible for the tee!
</h2>
<div class="github-logo">
<svg class="icon icon-github">
<use xlink:href="img/sprite.svg#icon-github"></use>
</svg>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="logo-holder">
<span class="hacktober">Hacktober</span>
<span class="magazine">Magazine</span>
<span class="decagon">Developers</span>
</div>
</div>
</div>
<div id="searchContainer">
<input type="text" id="searchInput" onkeyup="searchForDevelopers()" placeholder="Search..">
</div>
<div class="container flex card-container" id="cardContainer">
</div>
<!-- script files -->
<script src="script/index.js"></script>
</body>
<!-- body ends -->
</html>