Quora page
Html:
<!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>MOHIT CSS </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Quora
<button id="login">Log in</button>
<button id="signup">Sign up</button>
</h1>
<div>
<input type="text" placeholder="Username">
<input type="password" placeholder="Password">
</div>
<nav>
<ul>
<li><a href="/home">Home</a></li>
<li><a href="/following">Following</a></li>
<li><a href="/answer">Answer</a></li>
<li><a href="/spaces">Spaces</a></li>
</ul>
</nav>
<hr>
</header>
<main>
<p>
Adam
<a class="follow" href="/adam">Follow /abc</a></span>
</p>
<h3>What is the highest salary for a spacex engineer?</h3>
<span>
<button class="upvote">+upvote</button>
<button class="answer">answer</button>
</span>
<hr />
<p>
Bob
<a class="follow" href="/bob">Follow xyz</a>
</p>
<h3>What is the syllabus for JEE 2024?</h3>
<span>
<button class="upvote">+upvote</button>
<button class="answer">answer</button>
</span>
<hr />
<p>
Catlyn
<a class="follow" href="/catlyn">Follow pqr</a>
</p>
<h3>Why is the sky blue?</h3>
<span>
<button class="upvote">+upvote</button>
<button class="answer">answer</button>
</span>
<hr />
<p>
Dan
<a class="follow" href="/dan">Follow pqr</a>
</p>
<h3>Why is the sky blue?</h3>
<span>
<button class="upvote">+upvote</button>
<button class="answer" >answer</button>
</span>
<hr />
</main>
</body>
</html>
CSS :
h1,h3{
color: #B92B27;
}
#login{
background-color: #B92B27;
color: aliceblue;
border:none;
}
#signup{
background-color: #1877F2;
color: aliceblue;
border:none;
}
.upvote {
color: rgb(255, 255, 255);
background-color: #1877F2;
border:none;
}
.answer {
color: white;
background-color: #B92B27;
border:none;
}
Comments
Post a Comment