forked from Varanasi-Software-Junction/JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (98 loc) · 5.03 KB
/
index.html
File metadata and controls
112 lines (98 loc) · 5.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Varanasi Software Junction Repo</title>
<link rel="icon" type="image/png" href="https://3.bp.blogspot.com/-py5FbTZgvjo/YDi1bsQq16I/AAAAAAAACB0/BxejbJBcHA4AVfkB33WYC3YlVmxElM7BwCK4BGAYYCw/s1600/Varanasi%2BSoftware%2BJunction%2BPhone%2BLogo.png">
<!-- Add Bootstrap CSS link -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<style>
body {
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #ff9933; /* Saffron color */
padding: 1em;
text-align: center;
}
nav {
background-color: #333;
}
nav a {
color: #fff;
}
section {
max-width: 800px;
margin: 2em auto;
padding: 2em;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1 {
color: white; /* Saffron color */
}
p {
line-height: 1.6;
color: #555;
}
.btn {
margin-top: 1em;
}
</style>
</head>
<body>
<header>
<h1>Varanasi Software Junction JavaScript Repo</h1>
</header>
<!-- Navigation Section -->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<!-- Navigation Links -->
<li class="nav-item active">
<a target="vsj" class="nav-link" href="https://varanasisoftwarejunction.blogspot.com/">Home</a>
</li>
<li class="nav-item">
<a target="vsj" class="nav-link" href="https://varanasisoftwarejunction.blogspot.com/p/varanasi-software-junction-customer.html">Contact for Software</a>
</li>
<li class="nav-item">
<a target="vsj" class="nav-link" href="https://varanasisoftwarejunction.blogspot.com/2021/10/post-your-programming-problem-here.html">Contact for Programming Problem</a>
</li>
<!-- Dropdown Menu -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Timers
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a target="vsj" class="dropdown-item" href="https://varanasi-software-junction.github.io/JavaScript/setInterval%20Slide%20Show.html">Slide Show</a>
<a target="vsj" class="dropdown-item" href="https://github.com/Varanasi-Software-Junction/JavaScript/blob/main/setInterval%20Slide%20Show.html">Slide Show Code</a>
<a target="vsj" class="dropdown-item" href="https://varanasi-software-junction.github.io/JavaScript/setInterval%2C%20clearInterval.html">Set Interval, Clear Interval</a>
<a target="vsj" class="dropdown-item" href="https://github.com/Varanasi-Software-Junction/JavaScript/blob/main/setInterval%2C%20clearInterval.html">Set Interval, Clear Interval Code</a>
<a target="vsj" class="dropdown-item" href="https://varanasi-software-junction.github.io/JavaScript/setTimeout%2C%20clearTimeout.html">Set Timeout, Clear Timeout</a>
<a target="vsj" class="dropdown-item" href="https://github.com/Varanasi-Software-Junction/JavaScript/blob/main/setTimeout%2C%20clearTimeout.html">Set Timeout, Clear Timeout Code</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Separated Link</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
<section class="container">
<h2 class="mb-4">Welcome to Varanasi Software Junction Repository!</h2>
<p>This repository contains awesome JavaScript code. Explore and contribute to make it even better!</p>
<a target="vsj" href="https://github.com/Varanasi-Software-Junction/JavaScript" class="btn btn-dark">View on GitHub</a>
</section>
<!-- Add Bootstrap JS and Popper.js scripts -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>