Skip to content

Commit

Permalink
fix br html tags and formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtausifiqbal committed Oct 15, 2023
1 parent f7af223 commit cb0f7a1
Show file tree
Hide file tree
Showing 4 changed files with 474 additions and 475 deletions.
125 changes: 61 additions & 64 deletions contactUs.html
Original file line number Diff line number Diff line change
@@ -1,77 +1,74 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="Shortcut Icon" type="image/ico" href="images/favicon.svg" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>Contact Us</title>

<head>
<meta charset="UTF-8">
<link rel="Shortcut Icon" type="image/ico" href="images/favicon.svg">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />

<link rel="stylesheet" href="./css/style.css" />
<!-- Your custom CSS file -->
<link rel="stylesheet" href="./css/contactus.css" />
</head>

<title>Contact Us</title>
<body>
<!-- NavBar -->
<nav id="navbar" class="navbar navbar-expand-lg navbar-dark fixed-top">
<a class="navbar-brand mb-1 nav-heading" href="/index.html" style="font-size: 28px">
<!-- <img src="./medicalLogo.png" /> -->
<i class="fa fa-stethoscope" style="font-size: 30px; color: white"></i>
<img src="./images/logo-color.jpeg" alt="" width="130px" />
</a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contactUs.html">Contact Us</a></li>
<li><a href="login.html" style="color: white; text-decoration: none">Logout</a></li>
</ul>
</nav>

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

<link rel="stylesheet" href="./css/style.css"> <!-- Your custom CSS file -->
<link rel="stylesheet" href="./css/contactus.css">

</head>

<body>

<!-- NavBar -->
<nav id="navbar" class="navbar navbar-expand-lg navbar-dark fixed-top">
<a class="navbar-brand mb-1 nav-heading" href="/index.html" style="font-size: 28px;">
<!-- <img src="./medicalLogo.png" /> -->
<i class="fa fa-stethoscope" style="font-size:30px;color:white"></i>
<img src="./images/logo-color.jpeg" alt="" width="130px">
</a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contactUs.html">Contact Us</a></li>
<li><a href="login.html" style="color: white; text-decoration: none;">Logout</a></li>
</ul>
</nav>

<div class="contact-form">
<h1>Contact us</h1>
<div class="container">
<div class="main">
<div class="content">
<h2>Contact Us</h2>
<form action="#" method="post">
<input type="text" name="name" placeholder="Enter your Name">
<input type="email" name="name" placeholder="Enter your Email">
<textarea name="message" placeholder="Your Message"></textarea>
<button type="submit" class="btn">Send<i class="butn"></i></button>
</form>
</div>
<div class="form-img">
<img src="./images/contactus.svg" alt="contactus">
<div class="contact-form">
<h1>Contact us</h1>
<div class="container">
<div class="main">
<div class="content">
<h2>Contact Us</h2>
<form action="#" method="post">
<input type="text" name="name" placeholder="Enter your Name" />
<input type="email" name="name" placeholder="Enter your Email" />
<textarea name="message" placeholder="Your Message"></textarea>
<button type="submit" class="btn">Send<i class="butn"></i></button>
</form>
</div>
<div class="form-img">
<img src="./images/contactus.svg" alt="contactus" />
</div>
</div>
</div>
</div>
</div>

<footer>
<p class="text-center1">
Made by Kiran Amin Panjwani <br>
This Project is participating in Hacktoberfest. Copyright © <span id="current-year"></span>.</br></br>
</p>
</footer>

<!-- dynamic data code -->
<script src="./js/script.js"></script>
<footer>
<p class="text-center1">
Made by Kiran Amin Panjwani <br />
This Project is participating in Hacktoberfest. Copyright © <span id="current-year"></span>.<br /><br />
</p>
</footer>

<script>
const currentYear = new Date().getFullYear();
document.getElementById('current-year').textContent = currentYear;
</script>

</body>
<!-- dynamic data code -->
<script src="./js/script.js"></script>

</html>
<script>
const currentYear = new Date().getFullYear();
document.getElementById("current-year").textContent = currentYear;
</script>
</body>
</html>
Loading

0 comments on commit cb0f7a1

Please sign in to comment.