Skip to content
Open
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
89 changes: 50 additions & 39 deletions project_1.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,69 +8,80 @@
</head>
<body>
<header>
<h1>Quora
<button id="login">Log in</button>
<button id="signup">Sign up</button>
</h1>
<h1>Quora
<button id="login" aria-label="Log in">Log in</button>
<button id="signup" aria-label="Sign up">Sign up</button>
</h1>

<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>
<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>
<article>
<p>
Adam &nbsp;&nbsp;
<a class="follow" href="/adam">Follow /abc</a></span>
Adam &nbsp;&nbsp;
<a class="follow" href="/adam" aria-label="Follow Adam">Follow /abc</a>
</p>
<h3>What is the highest salary for a spacex engineer?</h3>
<h3>What is the highest salary for a SpaceX engineer?</h3>
<span>
<button>+upvote</button>
<button>answer</button>
<button aria-label="Upvote question">+upvote</button>
<button aria-label="Answer question">Answer</button>
</span>
<hr />
</article>

<article>
<p>
Bob &nbsp;&nbsp;
<a class="follow" href="/bob">Follow xyz</a>
Bob &nbsp;&nbsp;
<a class="follow" href="/bob" aria-label="Follow Bob">Follow xyz</a>
</p>
<h3>What is the syllabus for JEE 2024?</h3>
<span>
<button>+upvote</button>
<button>answer</button>
<button aria-label="Upvote question">+upvote</button>
<button aria-label="Answer question">Answer</button>
</span>
<hr />
</article>

<article>
<p>
<div>
<input type="text" placeholder="username">
<input type="password" placeholder="password">
</div>
Catlyn &nbsp;&nbsp;&nbsp;&nbsp;
<a class="follow" href="/catlyn">Follow pqr</a>
<div>
<input type="text" placeholder="Username" aria-label="Username">
<input type="password" placeholder="Password" aria-label="Password">
</div>
</p>
<p>
Catlyn &nbsp;&nbsp;&nbsp;&nbsp;
<a class="follow" href="/catlyn" aria-label="Follow Catlyn">Follow pqr</a>
</p>
<h3>Why is the sky blue?</h3>
<span>
<button>+upvote</button>
<button>answer</button>
<button aria-label="Upvote question">+upvote</button>
<button aria-label="Answer question">Answer</button>
</span>
<hr />
</article>

<article>
<p>
Dan &nbsp;&nbsp;&nbsp;&nbsp;
<a class="follow" href="/dan">Follow pqr</a>
</p>
<h3>Why is the sky blue?</h3>
<span>
<button>+upvote</button>
<button>answer</button>
</span>
<hr />
Dan &nbsp;&nbsp;&nbsp;&nbsp;
<a class="follow" href="/dan" aria-label="Follow Dan">Follow pqr</a>
</p>
<h3>Why is the sky blue?</h3>
<span>
<button aria-label="Upvote question">+upvote</button>
<button aria-label="Answer question">Answer</button>
</span>
<hr />
</article>
</main>
</body>
</html>