Skip to content

Commit

Permalink
Updated Login button
Browse files Browse the repository at this point in the history
Improved login button
  • Loading branch information
DhruvJohri committed Jul 15, 2024
1 parent c62dcce commit 7d8b3c4
Show file tree
Hide file tree
Showing 2 changed files with 103 additions and 0 deletions.
54 changes: 54 additions & 0 deletions Untitled-1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to Our Landing Page</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<main>
<section id="about">
<div class="container">
<div class="column">
<h2>About Us</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</div>
<div class="column">
<img src="about_image.jpg" alt="About Us Image">
</div>
</div>
</section>

<section id="services">
<div class="container">
<div class="column">
<img src="service1.jpg" alt="Service 1">
<h2>Service 1</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<div class="column">
<img src="service2.jpg" alt="Service 2">
<h2>Service 2</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
</section>
</main>

<footer>
<p>&copy; 2024 Simple Landing Page</p>
</footer>
</body>
</html>
49 changes: 49 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}

nav ul {
list-style-type: none;
padding: 0;
}

nav ul li {
display: inline;
margin-right: 20px;
}

nav ul li a {
color: #fff;
text-decoration: none;
}

main {
padding: 20px;
}

.container {
display: flex;
justify-content: space-between;
align-items: center;
}

.column {
flex: 1;
padding: 20px;
}

footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}

0 comments on commit 7d8b3c4

Please sign in to comment.