Question

In: Computer Science

Using brackets you will need to create the HTML page and CSS style sheet for the...

Using brackets you will need to create the HTML page and CSS style sheet for the given Form example.

  1. Form 1: create an HTML page with a form that contains a text input field. The label for the text field should be “City”. Beneath it should be a submit button “Lookup”. Place a horizontal line beneath the Lookup button and add three radio buttons labeled “Beginner”, “Intermediate”, and “Advanced”.

Your page should have a title and a header in the body.

  1. Requirements for styling:
    1. The form should have a light grey background color (#eee).
    2. The form font should be 10pt Arial
    3. The form padding should be 10px
    4. For the text field <label> tag, set display to inline-block, use a width of 55px, align the text to the left, and add a margin on the right of 9px.
    5. For the text input, add a 290px width, 14px padding, and 8px margin on top.
    6. For the button, add a 1px solid gray border, 190px width, 12px padding, and 6px margin on top. The button should change color when the mouse is hovering over it.
    7. For all labels and adjacent radio buttons, use a pointer cursor, a margin of 25px to the right, and font size of 15pt.

Solutions

Expert Solution

hey there ! i am done with the code .. Please give me a like to appreciate my work and efforts...

here is the code -

<!DOCTYPE html>
<html>
<head>
<title>City</title>
<!--style for all attributes -->
<style>
  
form
{
background-color: #eeeeee;
font: 10pt;
font-family: sans-serif ;
padding: 10px;
}
#citylabel
{
display: inline-block;
width: 55px;
text-align: left;
margin: 9px;
}
#city
{
width: 290px;
padding: 14px;
margin-top: 8px;
}
  
#button
{
border: 1px solid gray;
width: 190px;
padding: 12px;
margin-top: 6px;
}
#button:hover
{
background-color: aqua;
}
radio,label
{
margin-right: 25px;
font: 15pt;

}
  
</style>
  
</head>
<body>
<!--creating form -->
<form>
<label id = "citylabel" for="city">City:</label><br>
<input type="text" id="city" name="city"><br>

<hr>
<input type="radio" id="beginner" name="citycheck" value="beginner">
<label for="beginner">Beginner</label><br>
<input type="radio" id="intermediate" name="citycheck" value="intermediate">
<label for="intermediate">Intermediate</label><br>
<input type="radio" id="advanced" name="citycheck" value="advanced">
<label for="advanced">Advanced</label>
<hr>
<input type="submit" id="button" value="LoolUp"/>
</form>
  
</body>
</html>

and the snapshot of the output is -

Thank You ! dONT forget to like !


Related Solutions

Create a Home Page using HTML and CSS Part 1 • Contain an image or logo...
Create a Home Page using HTML and CSS Part 1 • Contain an image or logo about your website. • Must contain three navigation links. Home link. Registration link. Animations link. • Footer will contain links to web pages to any other site you wish (just be outside your webpage, like YouTube,etc.) Open links in new tab, not current tab. Create a Registration page: • Registration Fields: 1) User Name - Input Text 2) Password - Input Password 3) Repeat...
Create a Web Page Using HTML, CSS, JS, jQuery • Create a web profile, including any...
Create a Web Page Using HTML, CSS, JS, jQuery • Create a web profile, including any of the following: • Your hobbies, likes/dislikes, career aspirations, dream job, favorite animals/ pets, favorite superhero, etc. • You do not have to share personal information that you are uncomfortable with sharing. Follow these guidelines when creating your page: • Include at least one heading (h1, h2, etc.) in your web page. • Provide a quote from a book, movie, etc. • Include at...
Please write "my account" page program by using HTML and CSS
Please write "my account" page program by using HTML and CSS
write php code for buying and selling web using sql, javascript ,html ,css style
write php code for buying and selling web using sql, javascript ,html ,css style
Given the html below, create css to produce the following illustrated color page output: Red for...
Given the html below, create css to produce the following illustrated color page output: Red for outer paragraph and outer list Green and italic for first inner div paragraph, green for second div paragraph, blue for inner list HTML File <html> <head>       <link rel="stylesheet" type="text/css" href="mystyle98_d.css"> </head> <body>              <p>     I'm a paragraph, what color am I ?      </p>    <ul>      <li id = "fix"> I'm a list item;what color am I? </li>        </ul> <div class = "central1"> <p class ="above">   I'm...
Make a working good looking webpage (Home page) of a PAYROLL website using CSS, HTML, and...
Make a working good looking webpage (Home page) of a PAYROLL website using CSS, HTML, and JavaScript # Sign in/SignUp page should work # CSS HTML and javaScript should be in separate files # Add images # post a picture of your output and code as well
Debug3-4.css You’ve been given the initial HTML and CSS code for this web page, but there...
Debug3-4.css You’ve been given the initial HTML and CSS code for this web page, but there are several errors in the CSS stylesheet. Use your knowledge of CSS to locate and fix the errors. The body element should have a width that is 90% of the width of the browser window ranging from a minimum of 600 pixels up to a maximum of 1024 pixels. Fix the syntax errors in the body style rule that defines the width of the...
Create a form using the following HTML elements at a minimum. Style the form in your...
Create a form using the following HTML elements at a minimum. Style the form in your CSS. You do not need to include a form action (i.e. the form doesn't have to do anything - we're designing the front end of the form). textarea textbox input type of "email" select radio button checkbox submit button style at least three elements of your form in your stylesheet, including your submit button Use a comment to delineate the beginning and end of...
use CSS, java and HTML to make a charity admin page. It's a web page after...
use CSS, java and HTML to make a charity admin page. It's a web page after you log in to your account. I can have personal information, the amount of money donated, the children who have received charity, and some blogs. In fact, all the things are what I want. But you are free to do whatever You like, even if you don't say what I say. I just need a charity Admin page for charity User.Don't ask me for...
use CSS, java and HTML to make a charity admin page. It's a web page after...
use CSS, java and HTML to make a charity admin page. It's a web page after you log in to your account. I can have personal information, the amount of money donated, the children who have received charity, and some blogs. In fact, all the things are what I want. But you are free to do whatever You like, even if you don't say what I say. I just need a charity Admin page for charity User.Don't ask me for...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT