forked from yashikabhargava/WebX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (126 loc) · 4.79 KB
/
index.html
File metadata and controls
135 lines (126 loc) · 4.79 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
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
<!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" />
<link rel="icon" type="image/png" href="src/img/favicon.png" />
<link rel="stylesheet" href="src/styles/style.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<link href="https://css.gg/chevron-down.css" rel="stylesheet" />
<title>Home | WebX</title>
<meta
name="description"
content="Some free resources for your next web development project."
/>
<!--For Share Buttons-->
<script
type="text/javascript"
src="https://platform-api.sharethis.com/js/sharethis.js#property=633ac625c2af2800193d4b78&product=sticky-share-buttons"
async="async"
></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- scrollReveal library cdn -->
<script src="https://unpkg.com/scrollreveal"></script>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
crossorigin="anonymous"
/>
<link href="https://css.gg/chevron-down.css" rel="stylesheet" />
<link
href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
rel="stylesheet"
id="bootstrap-css"
/>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link href="https://css.gg/chevron-down.css" rel="stylesheet" />
<link rel="stylesheet" href="/src/styles/btn.css">
</head>
<body>
<header class="header">
<div class="nav-area navbar" id="bootstrap-override">
<div class="left-nav">
<a href="./index.html">WebX.</a>
</div>
<div class="right-nav">
<div class="bar-btn">
<a href="public/contact.html" class="w3-bar-item w3-button"
>Contact</a
>
<a href="public/resources.html" class="w3-bar-item w3-button"
>Resources</a
>
<a href="./index.html" class="home">Home</a>
<a href="https://github.com/yashikabhargava/WebX" target="_blank" class="w3-bar-item w3-button"
>Contribute</a
>
<label>
<input type="checkbox" name="" id="checkbox">
<span class="check"></span>
</label>
</div>
</div>
</div>
</header>
<section id="landing">
<div class="row m-0 landing-div">
<div
id="landing-text"
class="col-lg-6 col-md-12 col-sm-12"
style="margin-top: 410px"
>
<h1 id="landing-text-1">Some Free Resources</h1>
<h2 id="landing-text-2">For your next web development project</h2>
<button id="btn">
<a href="public/resources.html">Check All Resources</a>
</button>
</div>
<div id="landing-img" class="col-lg-6 col-md-12 col-sm-12">
<img
src="src/img/landing-img.svg"
alt="a woman with computer"
class="p-1 hero-img img img-fluid"
style="margin-top: -40px"
/>
</div>
</div>
</section>
<!-- <footer> -->
<!--For share Buttons -->
<!-- <div class="sharethis-sticky-share-buttons"></div>
<div>
<h2>Follow Us</h2>
</div> -->
<!--Follow Us buttons -->
<!-- <div style="text-align: center; margin-bottom: 10px;">
<a href="https://www.linkedin.com/in/yashika-bhargava-1171581aa/" class="fa fa-linkedin"></a> -->
<!--Add your Linkedin-->
<!-- <a href="https://twitter.com/yashibhargava_" class="fa fa-twitter"></a>
<a href="https://github.com/yashikabhargava" class="fa fa-github"></a> -->
<!-- <a href="#" class="fa fa-hashnode"></a> -->
<!--Follow us button ENd-->
<!-- </div>
<p>Copyright © 2022 <strong>WebX.</strong> All Rights Reserved</p>
</footer> -->
<!--For Top Scroll Button -->
<script src="src/scripts/main.js"></script>
<!-- scroll js -->
<script type="text/javascript" src="src/scripts/scroll.js"></script>
</body>
</html>