-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
162 lines (144 loc) · 5.71 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<title>Hacktober Fest</title>
</head>
<body>
<header id="header">
<!-- Navbar -->
<nav>
<div id="nav-top">
<h3>Hacktober Fest</h3>
<div id="menu-btn">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
</div>
<ul id="links">
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Events</a></li>
<li><a href="./faq.html">Faq</a></li>
</ul>
</nav>
<!-- Home Page banner -->
<section id="banner">
<div id="banner-box">
<h1 id="banner-title">Hacktober Fest 2020</h1>
<div class="banner-underline"></div>
<h3 class="banner-subtitle">
DSC JIIT - 128 brings you the most famous event for beginners to get started with Open Source
</h3>
<a class="banner-btn" ref="#">Explore</i></a>
</div>
</section>
</header>
<!-- Details -->
<section class="numbers">
<div class="numbers-center">
<article class="detail-number">
<span class="detail-number-icon">
<i class="fas fa-comment"></i>
</span>
<h1 class="pull detail-number-text">
68000
</h1>
<h2 class="detail-number-title">
pull requests raised
</h2>
</article>
<article class="detail-number">
<span class="detail-number-icon">
<i class="fas fa-check"></i>
</span>
<h1 class="comp detail-number-text">
42568
</h1>
<h2 class="detail-number-title">
challenge completions
</h2>
</article>
<article class="detail-number">
<span class="detail-number-icon">
<i class="fas fa-edit"></i>
</span>
<h1 class="detail-number-text">
10000000+
</h1>
<h2 class="detail-number-title">
lines of code
</h2>
</article>
</div>
</section>
<div class="container">
<div class="card">
<div class="card-image">
<i class="fab fa-html5"></i>
</div>
<div class="card-text">
<span class="date">Hyper Text Markup Language</span>
<h2>Structure</h2>
<p>All content that you see on a website is present in the html file of that website .Html is responsible for the structure and the content </p>
</div>
<div class="card-stats">
<h2>
HTML5
</h2>
</div>
</div>
<div class="card">
<div class="card-image">
<i class="fab fa-css3"></i>
</div>
<div class="card-text">
<span class="date">Cascading Style Sheet</span>
<h2>Designing</h2>
<p>From every Position to each color the designing of the website is done by css and its properties.</p>
</div>
<div class="card-stats">
<h2>
CSS3
</h2>
</div>
</div>
<div class="card">
<div class="card-image">
<i class="fab fa-js-square"></i>
</div>
<div class="card-text">
<span class="date">Javascript </span>
<h2>Brain</h2>
<p>Javascript is the brain of every website it handles the dataflow like forms and inputs .Its can also be used to manipulate DOM(Document Object Model).</p>
</div>
<div class="card-stats">
<h2>
JAVASCRIPT
</h2>
</div>
</div>
</div>
<center>
<div class "footer">
<h4 class="contact-text">CONTACT US</h4>
<h4 class="contact-text">© 2020 DigitalOcean, LLC. All rights reserved</h4>
<div class="contact">
<a href="https://www.facebook.com/dscjiitnoida/"><img src="Facebook.svg" class="contact-img"></a>
<a href="https://github.com/dsc-jiit-128"></a><img src="Github.svg" class="contact-img"></a>
<a href="mailto:dscjiit128@gmail.com"></a><img src="google-plus.svg" class="contact-img"></a>
<a href="https://www.instagram.com/dscj128/?hl=en"></a><img src="instagram.svg"class="contact-img"></a>
<a href="https://twitter.com/Dsc128"><img src="Twitter.svg" class="contact-img"></a>
</div>
</div>
</center>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="index.js"></script>
</body>
</html>