Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add files via upload #1718

Merged
merged 1 commit into from
Oct 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Ankan_BroadBand_(for akash)/final.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!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>Confirmation</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div>
<center><h1>Booking Confirmed</h1></center>
</div>
</body>
</html>
76 changes: 76 additions & 0 deletions Ankan_BroadBand_(for akash)/index (1).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>ISP Landing Page</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<div class="logo"><img src="logo.png" alt="ISP Logo" /></div>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/">Landline & Data</a></li>
<li><a href="/">Mobile & Data</a></li>
<li><a href="/">Enterprise services</a></li>
<li><a href="/">Investors</a></li>
<li><a href="/">My Account</a></li>
<li><a href="/">Tenders</a></li>
<li><a href="/">Business Opportunities</a></li>
</ul>
</header>

<main>
<div class="image">
<img src="https://picsum.photos/1250/400" alt="Home" />
<br /><br />
</div>
<div class="services">
<div class="service">
<h3>Pay My Bills</h3>
<ul>
<li><a href="#">Bharat Fibre(FTTH)</a></li>
<li><a href="#">Landline/BroadBand</a></li>
<li><a href="#">MOBILE</a></li>
</ul>
</div>
<div class="service">
<h3>Recharge</h3>
<ul>
<li>
<a href="#"
>Mobile /Top up/ <br />Special tariff Voucher/Plan Migration.</a
>
</li>
<li><a href="#">Prepaid Broad band/Recharge</a></li>
</ul>
</div>
<div class="service">
<h3>Customer Care</h3>
<ul>
<li><a href="#">Customer Care – One click.</a></li>
<li><a href="#">Prepaid Mobile Selfcare</a></li>
<li><a href="#">Postpaid Mobile Selfcare</a></li>
</ul>
</div>
<div class="service">
<h3>New Connection</h3>
<ul>
<li><a href="#">Customer Self Onboarding</a></li>
<li><a href="#">WINGS service</a></li>
<li><a href="order.html">Apply for Bharat Fibre(FTTH)</a></li>
</ul>
</div>
</div>
<div class="butt">
<br /><br />
<a href="order.html">
<button style="padding: 5px 10px; border-radius: 10px">
<h2>Apply For Connection</h2>
</button>
</a>
</div>
</main>

<footer></footer>
</body>
</html>
Binary file added Ankan_BroadBand_(for akash)/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 60 additions & 0 deletions Ankan_BroadBand_(for akash)/order.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!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>Form</title>
<style>
body {
background-color: #5cdb95;
}
form {
padding: 0%;
margin: 0 auto;

border: 5px solid #05386b;
width: 20%;
background: #edf5e1;
}
</style>
</head>
<body>
<form action="final.html">
<center>
<u><h1>Book Here</h1></u>
<br />
<label for="reg">Name</label><br />
<input type="text" id="reg" placeholder="required(*)" required /><br />
<label for="user">Select Service</label><br />
<input type="text" id="user" placeholder="required(*)" required /><br />
<label for="pwd">Select Circle</label><br />
<input type="text" id="pwd" placeholder="required(*)" required /><br />
<label for="email">Email</label><br />
<input
type="email"
id="email"
placeholder="required(*)"
required
/><br />
<label for="num">Mobile Number</label><br />
<input
type="number"
id="num"
pattern="^[0-9]{10}$"
placeholder="required(*)"
required
/><br />
<label for="dob">Date of Birth</label><br />
<input
type="date"
id="dob"
placeholder="required(*)"
required
/><br /><br /><br />
<input type="submit" />
<input type="reset" />
</center>
</form>
</body>
</html>
77 changes: 77 additions & 0 deletions Ankan_BroadBand_(for akash)/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #5cdb95;
}
header{
max-width: 100%;
margin: 10px;
display: flex;
justify-content: space-between;
}

header ul{
display: flex;
justify-content: space-evenly;
list-style-type: none;

}

header ul li{
padding: 3px; ;
margin-right: 10px;
margin-left: 10px;
border: 1px solid black;
border-radius: 5px;
background-color:#edf5e1 ;
max-height: 30px;
}

header ul li a{
text-decoration: none;
color: black;
}

main{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.services{
width: 90%;
display: flex;
justify-content: space-evenly;
}
.service{
background-color: #edf5e1;
padding: 7px;
border: 0.5px solid gray;
border-radius: 15px;
box-shadow: 5px 5px 8px rgb(26, 198, 132);
justify-content: center;
}
.service h3 {
font-weight: 500;
font-size: 30px;
}
.service ul{
margin-top: 10px;
}
.service li{
margin-left: 20px;
color: black;
}
.service li a {
text-decoration: none;
}
.image img{
width: auto;
}
.logo img{
width: 50px;
}