Learn HTML Forms by Building a Registration Form - Step 10

Tell us what’s happening:
hi can anyone help me I did not code for a while and forgot some terms can someone explain how can I add adjacent

   **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
 <head>
   <title>Registration Form</title>
	  <link rel="stylesheet" href="styles.css" />
 </head>
 <body>
   <h1>Registration Form</h1>
   <p>Please fill out this form with the required information</p>
  

 </body>
</html>
/* file: styles.css */
body {
 width: 100%;
 height: 100vh;
 margin: 0;
 background-color: #1b1b32;
	color: #f5f6f7;
}
   **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15

Challenge: Learn HTML Forms by Building a Registration Form - Step 10

Link to the challenge:

Hey!

Adjacent just means “right next to” or “neighbor”. for example:

<button>taran<button>
<p>this is a paragraph<p>

here, the paragraph is adjacent to the button and vice versa.

if you’re having trouble remembering stuff then i would suggest you to go through the material again because repetition and practice plays a great role in programming.
alternatively, you could also however go through some additional theory material like mdn’s learn web development course.

Hope this helps! :smile:

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.