-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
117 lines (101 loc) · 4.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding Hustlers</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav id="navbar">
<div id="logo">
<img src="logo.png" alt="Coding Hustlers">
</div>
<div class = "ms-auto">
<ul>
<li class="item"><a href="#home">Home</a></li>
<li class="item"><a href="#Solutions">Solutions</a></li>
<li class="item"><a href="#Team">Team</a></li>
<li class="item"><a href="#contact">Contact Us</a></li>
</ul>
</div>
</nav>
<section id="home">
<h1 class="h-primary">Welcome to Coding Hustlers</h1>
<p>Coding Hustlers is a learning platform especially for coding newbies </p>
<p>Perfect Platform for starting your coding journey </p>
<p>Here you are also notified about the coding contests and new opportunities coming to your path</p>
</section>
<section id="Solutions-container">
<h1 class="h-primary center">Solutions</h1>
<div id="Solutions">
<div class="box">
<img src="Live Lectures.png" alt="">
<h2 class="h-secondary center">Live Lectures</h2>
<p class="center">At Coding Hustlers free video lectures are provided by top faculties so that you can learn different programming languages like HTML, CSS, React, C, Java, Kotlin and many more.
</p>
</div>
<div class="box">
<img src="Open Source.png" alt="">
<h2 class="h-secondary center">Open Source</h2>
<p class="center">All the useful information about open source is provided
Roadmap for contributing to open source is provided so that you can easily excel and contribute to open source.</p>
</div>
<div class="box">
<img src="Weekly Contests.png" alt="">
<h2 class="h-secondary center">Weekly Contests</h2>
<p class="center">Here is where you can show off your computer programming skills
Put yourself up for recognition and win great prizes.Enhance your coding skills by actively participating in contests
</p>
</div>
</div>
</section>
<section class="container" id="Team">
<h1 class="h-primary center">Team</h1>
<div class="col-lg-12 m-1">
<img class="bd-placeholder-img rounded-circle" width="140" height="140"
src="Satakshi jain.png"> </img>
<h2 class="center mt-1">Satakshi Jain</h2>
<p class = "center"><a class="btn btn-secondary"
href="https://www.linkedin.com/in/satakshi-jain-6b9306203">Contact</a></p>
</div>
</div>
</div>
</section>
<section id="contact">
<h1 class="h-primary center">Contact Us</h1>
<div id="contact-box">
<form action="">
<div class="form-group">
<label for="name">Name: </label>
<input type="text" name="name" id="name" placeholder="Enter your name">
</div>
<div class="form-group">
<label for="email">Email: </label>
<input type="email" name="name" id="email" placeholder="Enter your email">
</div>
<div class="form-group">
<label for="phone">Phone Number: </label>
<input type="phone" name="name" id="phone" placeholder="Enter your phone">
</div>
<div class="form-group">
<label for="message">Message: </label>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
</div>
<input type="submit" style="color: aliceblue; background-color: rgb(4, 58, 82);" value="Submit" />
</form>
</div>
</section>
</section>
<footer>
<div class="center">
Copyright © www.Coding Hustlers.com. All rights reserved!
</div>
</footer>
</body>
</html>