SlideShare une entreprise Scribd logo
1  sur  7
Télécharger pour lire hors ligne
HTML/CSS help needed. Providing both HTML and CSS codes. Thank you in advance
HTML Code
Event Tickets Order Form
New Year Central
For the child in all of us!HomeAbout UsOur ProductsEvent TicketsContact Us
Products of The Week...Natural Holly Berry Garland, 5f - $74.99Artificial Red Berry and White
Edge Holly Leaf Christmas Garland, 5.5f - $38.99Christmas Berries Red Stems Evergreen Pine
Branches, 8pcs - $15.99Order Event Tickets
© 2021 New Year Central. Created by Johnny White.
*****************************************************************************
*******************************
CSS Code
* {
margin: 0;
padding: 0;
}
body {
background-image: url("../images/berry.jpg");
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 100%;
}
div#frame {
margin: 25px auto;
padding: 20px 30px 20px 20px;
width: 50%;
min-width: 900px;
background-color: #ffffff;
background-image: linear-gradient(#ffffff 20%, #fdf7e8 70%, #ffffff 100%);
border: 2px solid #009926;
border-radius: 8px;
box-shadow: 0px 0px 90px 2px #008020;
}
p {
margin: 20px 0px;
}
a {
color: #008020;
}
a:link, a:visited {
text-decoration: none;
}
a:hover, a:focus {
text-decoration: underline;
}
/* Header */
header {
height: 160px;
border-bottom: 2px solid #e8b417;
}
header img {
float: left;
}
header div#header-line-1 {
font-size: 300%;
font-weight: bold;
text-align: right;
color: #ecc03b;
text-shadow: 2px 2px 2px black;
}
header div#header-line-2 {
font-size: 130%;
font-weight: bold;
text-align: right;
font-style: italic;
color: #008020;
}
/* aside */
aside {
width: 230px;
float: left;
margin: 30px 10px 0px 0px;
}
aside div.sidebar-title {
font-size: 115%;
font-weight: bold;
color: #d1a215;
}
aside ul {
margin: 15px 0px 0px 15px;
}
aside ul li {
margin: 15px 0px 0px 0px;
}
aside ul li a{
font-style: italic;
font-size: 90%;
}
/* Main */
main {
margin: 20px 0;
padding-left: 20px;
float: left;
width: 638px;
min-height: 600px;
border-left: 2px solid #e8b417;
}
main h1 {
margin: 0;
font-size: 200%;
}
main h1:first-letter {
font-size: 240%;
}
main h2 {
margin: 25px 0px;
font-size: 125%;
}
main h3 {
font-size: 110%;
}
main ul#product-categories {
list-style-type: none;
}
main ul#product-categories li {
margin: 35px 0px;
}
main ul#product-categories h3 {
margin-top: 10px;
}
main ul#product-categories p{
margin-top: 5px;
}
main ul#product-categories img {
border: 2px solid #e8b417;
border-radius: 10px;
box-shadow: 0px 0px 6px 2px #ecc03b;
}
/* the styles for the navigation menu */
#nav_menu {
margin-top: 2px;
}
#nav_menu ul {
list-style-type: none;
position: relative;
}
#nav_menu ul li {
float: left;
}
#nav_menu ul li a {
background-image: linear-gradient(#fdf7e8 15%, #ffffff 55%, #fdf7e8 100%);
width: 180px;
padding: 1em 0;
display: block;
text-align: center;
text-decoration: none;
font-weight: bold;
}
#nav_menu ul li a:hover, #nav_menu ul li a:focus {
color: #d1a215;
}
#nav_menu a.current, #nav_menu a.current:hover, #nav_menu a.current:focus {
color: #d1a215;
font-weight: bold;
}
/* Footer */
footer {
clear: left;
border-top: 2px solid #e8b417;
}
footer p {
font-size: 80%;
text-align: center;
} Instructions for Creating the Ticket Order Form You will use HTML5 and CSS to build a web
form to be used for placing orders for New Year events tickets. When you are done, the page
should look like this: Ordering Information- Evant: Number of Tickets: Payment Method Credit
Card Credit Card Information Card Type: Card Number: Expiration Date: Submit Your Order o
2021 New vear Central. Greated by lohnny whita.
Task specifications: You will be creating the order form in tickets_order_form.html web page,
which is found in Assignment-3-Source-Files folder. 1. Code the form element: - Use
'order_form' as the value for the form's name attribute - Use 'post' as the form submission method
- When you click on the Submit button, a web page called place_order.html is displayed (hint:
use the form's action attribute). The place_order.html file is located in the same folder as your
tickets order page. 2. Add fields/controls to the form as per the screenshot provided above: -
Make sure to use label elements for displaying the text beside the input fields. - The Event select
control should have the following choices: Cookie Decoration Contest Tree Decoration Contest
Gift of Light Ride-Along Breakfast with Santa - The Order Type select control should have the
following choices: - Member Package - Donor Package - Single Tickets - The Card Type select
control should have the following choices: - Visa - Master Card - Discover - Code the two radio
buttons so that: - They are part of the same radio group (ie. clicking on one of them deselects the
other one) - User can activate them by clicking on the labels - The two select controls used for
Expiration Date are to have the following choices - The month list should have values from
January through December - The year list should have values from 2021 through 2027 - Use
fieldset and legend elements to group the form elements as shown
- Set the autofocus on the Email field. 3. Add validation for form data entry using the available
HTML5 and CSS 3 data validation 'tools': - If you haven't already, make sure that you use the
appropriate HTML5 elements for the Email, Phone Number and Number of Tickets fields. -
Code (only) the following fields on the form as required using the appropriate HTML5 attribute:
Email, First Name, Last Name, City, Province, Postal Code, Card Number - Use the appropriate
HTML5 attribute to specify regular expressions to be used to validate the data entered so that it
matches the following patterns: Province: expecting a 2-letter code Postal code: expecting
exactly 6 alphanumeric characters Phone Number: expecting the value to be provided in '999-
999-9999' format Number of tickets: expecting a number - Card Number: expecting a 16-digit
entry NOTE: Look up regular expressions you'll need for this task in the lesson slides (week 10)
and/or in the exercise we have done in the class. - When a user hovers over each of the fields
validated with a regular expression, a message should be displayed informing the user of what
the accepted data format is, for that particular field. (As an example, see the message shown on
mouse over the Postal Code field, on the form screen shot.) - Use the placeholders for the form
fields as shown in the screen shot. 4. Style the form and its elements as per the design, by
modifying/adding CSS styles in main.css: - Use margin to add top and bottom spacing for
fieldsets elements as needed - Use margin to add bottom spacing for legend elements - Use bold
and grey colour for legend text - Set font-size as follows: - for legend elements: 85% - for label,
input and select elements: 90% - Style the labels and input fields so that they appear as per the
design:
the labels display on the left, input fields on the right side the label text is aligned to the right
input fields have same width ( 15em) and are all aligned use margins on input fields to add left
and bottom spacing as needed - Add CSS styles so that the required fields have a 2-pixel orange
border, and the valid fields have a 1-pixel black border. - Adjust the CSS so that the radio
buttons are displayed side by side, and their respective labels on their right, as shown. Hint: To
achieve this you can code the id attribute for the fieldset element that is grouping the buttons
(id='payment_method'), and then add the following styles to main.css: #payment_method label
{ / here add the style that will remove the float for the labels beside the radio buttons, so they
appear on the right side of the buttons themselves input[type="radio"] / - here (re)set the width
for the radio button controls to 'auto', and - set the left margin for the radio buttons to add space
as per the design */ - Format month and year lists as shown. Hint: you can use id selectors to set
the width of the month control to 7em and the width of the year control to 5em. - Have the
Submit and Reset Fields button 10 em wide.

Contenu connexe

Similaire à HTMLCSS help needed. Providing both HTML and CSS codes. Thank you i.pdf

ASSESSMENT CASE PAPER ANALYSIS / TUTORIALOUTLET DOT COM
ASSESSMENT CASE PAPER ANALYSIS / TUTORIALOUTLET DOT COMASSESSMENT CASE PAPER ANALYSIS / TUTORIALOUTLET DOT COM
ASSESSMENT CASE PAPER ANALYSIS / TUTORIALOUTLET DOT COMjorge0048
 
Start your app the better way with Styled System
Start your app the better way with Styled SystemStart your app the better way with Styled System
Start your app the better way with Styled SystemHsin-Hao Tang
 
Css code for a awoko newspaper html website which provides busines.pdf
Css code for a awoko newspaper html website which provides busines.pdfCss code for a awoko newspaper html website which provides busines.pdf
Css code for a awoko newspaper html website which provides busines.pdfaroraenterprisesmbd
 
BIS 155 Redefined Education--bis155.com
BIS 155 Redefined Education--bis155.comBIS 155 Redefined Education--bis155.com
BIS 155 Redefined Education--bis155.comagathachristie204
 
BIS 155 Education for Service--bis155.com
BIS 155 Education for Service--bis155.comBIS 155 Education for Service--bis155.com
BIS 155 Education for Service--bis155.comwilliamwordsworth8
 
常用的CSS样式备份精华
常用的CSS样式备份精华常用的CSS样式备份精华
常用的CSS样式备份精华wensheng wei
 
BIS 155 PAPERS Become Exceptional--bis155papers.com
BIS 155 PAPERS Become Exceptional--bis155papers.comBIS 155 PAPERS Become Exceptional--bis155papers.com
BIS 155 PAPERS Become Exceptional--bis155papers.comKeatonJennings119
 
BIS 155 PAPERS Lessons in Excellence--bis155papers.com
BIS 155 PAPERS Lessons in Excellence--bis155papers.comBIS 155 PAPERS Lessons in Excellence--bis155papers.com
BIS 155 PAPERS Lessons in Excellence--bis155papers.comthomashard72
 
BIS 155 PAPERS Introduction Education--bis155papers.com
BIS 155 PAPERS Introduction Education--bis155papers.comBIS 155 PAPERS Introduction Education--bis155papers.com
BIS 155 PAPERS Introduction Education--bis155papers.comagathachristie256
 
BIS 155 PAPERS Redefined Education--bis155papers.com
BIS 155 PAPERS Redefined Education--bis155papers.comBIS 155 PAPERS Redefined Education--bis155papers.com
BIS 155 PAPERS Redefined Education--bis155papers.comagathachristie241
 
BIS 155 Lessons in Excellence / bis155.com
BIS 155 Lessons in Excellence / bis155.comBIS 155 Lessons in Excellence / bis155.com
BIS 155 Lessons in Excellence / bis155.comkopiko33
 
BIS 155 Inspiring Innovation -- bis155.com
BIS 155 Inspiring Innovation -- bis155.comBIS 155 Inspiring Innovation -- bis155.com
BIS 155 Inspiring Innovation -- bis155.comkopiko101
 
BIS 155 PAPERS Education for Service--bis155papers.com
BIS 155 PAPERS Education for Service--bis155papers.comBIS 155 PAPERS Education for Service--bis155papers.com
BIS 155 PAPERS Education for Service--bis155papers.comabhila172
 
Salesperson Performance Analysis
Salesperson Performance AnalysisSalesperson Performance Analysis
Salesperson Performance AnalysisGurvinder Singh
 
BIS 155 PAPERS Inspiring Innovation--bis155papers.com
BIS 155 PAPERS Inspiring Innovation--bis155papers.comBIS 155 PAPERS Inspiring Innovation--bis155papers.com
BIS 155 PAPERS Inspiring Innovation--bis155papers.comsachin10101
 
BIS 155 PAPERS Education Counseling--bis155papers.com
BIS 155 PAPERS Education Counseling--bis155papers.comBIS 155 PAPERS Education Counseling--bis155papers.com
BIS 155 PAPERS Education Counseling--bis155papers.comvenkat60036
 
Bis 155 Enhance teaching / snaptutorial.com
Bis 155  Enhance teaching / snaptutorial.comBis 155  Enhance teaching / snaptutorial.com
Bis 155 Enhance teaching / snaptutorial.comHarrisGeorg46
 
Extra Credit Projects Microsoft Office Applications Sof.docx
Extra Credit Projects  Microsoft Office Applications Sof.docxExtra Credit Projects  Microsoft Office Applications Sof.docx
Extra Credit Projects Microsoft Office Applications Sof.docxssuser454af01
 
Bis 155 Effective Communication / snaptutorial.com
Bis 155  Effective Communication / snaptutorial.comBis 155  Effective Communication / snaptutorial.com
Bis 155 Effective Communication / snaptutorial.comBaileyac
 
BIS 155 Exceptional Education - snaptutorial.com
BIS 155   Exceptional Education - snaptutorial.comBIS 155   Exceptional Education - snaptutorial.com
BIS 155 Exceptional Education - snaptutorial.comDavisMurphyB28
 

Similaire à HTMLCSS help needed. Providing both HTML and CSS codes. Thank you i.pdf (20)

ASSESSMENT CASE PAPER ANALYSIS / TUTORIALOUTLET DOT COM
ASSESSMENT CASE PAPER ANALYSIS / TUTORIALOUTLET DOT COMASSESSMENT CASE PAPER ANALYSIS / TUTORIALOUTLET DOT COM
ASSESSMENT CASE PAPER ANALYSIS / TUTORIALOUTLET DOT COM
 
Start your app the better way with Styled System
Start your app the better way with Styled SystemStart your app the better way with Styled System
Start your app the better way with Styled System
 
Css code for a awoko newspaper html website which provides busines.pdf
Css code for a awoko newspaper html website which provides busines.pdfCss code for a awoko newspaper html website which provides busines.pdf
Css code for a awoko newspaper html website which provides busines.pdf
 
BIS 155 Redefined Education--bis155.com
BIS 155 Redefined Education--bis155.comBIS 155 Redefined Education--bis155.com
BIS 155 Redefined Education--bis155.com
 
BIS 155 Education for Service--bis155.com
BIS 155 Education for Service--bis155.comBIS 155 Education for Service--bis155.com
BIS 155 Education for Service--bis155.com
 
常用的CSS样式备份精华
常用的CSS样式备份精华常用的CSS样式备份精华
常用的CSS样式备份精华
 
BIS 155 PAPERS Become Exceptional--bis155papers.com
BIS 155 PAPERS Become Exceptional--bis155papers.comBIS 155 PAPERS Become Exceptional--bis155papers.com
BIS 155 PAPERS Become Exceptional--bis155papers.com
 
BIS 155 PAPERS Lessons in Excellence--bis155papers.com
BIS 155 PAPERS Lessons in Excellence--bis155papers.comBIS 155 PAPERS Lessons in Excellence--bis155papers.com
BIS 155 PAPERS Lessons in Excellence--bis155papers.com
 
BIS 155 PAPERS Introduction Education--bis155papers.com
BIS 155 PAPERS Introduction Education--bis155papers.comBIS 155 PAPERS Introduction Education--bis155papers.com
BIS 155 PAPERS Introduction Education--bis155papers.com
 
BIS 155 PAPERS Redefined Education--bis155papers.com
BIS 155 PAPERS Redefined Education--bis155papers.comBIS 155 PAPERS Redefined Education--bis155papers.com
BIS 155 PAPERS Redefined Education--bis155papers.com
 
BIS 155 Lessons in Excellence / bis155.com
BIS 155 Lessons in Excellence / bis155.comBIS 155 Lessons in Excellence / bis155.com
BIS 155 Lessons in Excellence / bis155.com
 
BIS 155 Inspiring Innovation -- bis155.com
BIS 155 Inspiring Innovation -- bis155.comBIS 155 Inspiring Innovation -- bis155.com
BIS 155 Inspiring Innovation -- bis155.com
 
BIS 155 PAPERS Education for Service--bis155papers.com
BIS 155 PAPERS Education for Service--bis155papers.comBIS 155 PAPERS Education for Service--bis155papers.com
BIS 155 PAPERS Education for Service--bis155papers.com
 
Salesperson Performance Analysis
Salesperson Performance AnalysisSalesperson Performance Analysis
Salesperson Performance Analysis
 
BIS 155 PAPERS Inspiring Innovation--bis155papers.com
BIS 155 PAPERS Inspiring Innovation--bis155papers.comBIS 155 PAPERS Inspiring Innovation--bis155papers.com
BIS 155 PAPERS Inspiring Innovation--bis155papers.com
 
BIS 155 PAPERS Education Counseling--bis155papers.com
BIS 155 PAPERS Education Counseling--bis155papers.comBIS 155 PAPERS Education Counseling--bis155papers.com
BIS 155 PAPERS Education Counseling--bis155papers.com
 
Bis 155 Enhance teaching / snaptutorial.com
Bis 155  Enhance teaching / snaptutorial.comBis 155  Enhance teaching / snaptutorial.com
Bis 155 Enhance teaching / snaptutorial.com
 
Extra Credit Projects Microsoft Office Applications Sof.docx
Extra Credit Projects  Microsoft Office Applications Sof.docxExtra Credit Projects  Microsoft Office Applications Sof.docx
Extra Credit Projects Microsoft Office Applications Sof.docx
 
Bis 155 Effective Communication / snaptutorial.com
Bis 155  Effective Communication / snaptutorial.comBis 155  Effective Communication / snaptutorial.com
Bis 155 Effective Communication / snaptutorial.com
 
BIS 155 Exceptional Education - snaptutorial.com
BIS 155   Exceptional Education - snaptutorial.comBIS 155   Exceptional Education - snaptutorial.com
BIS 155 Exceptional Education - snaptutorial.com
 

Plus de aggarwalshoppe14

I am sure you have heard the adage �my word is my bond�. We do not k.pdf
I am sure you have heard the adage �my word is my bond�. We do not k.pdfI am sure you have heard the adage �my word is my bond�. We do not k.pdf
I am sure you have heard the adage �my word is my bond�. We do not k.pdfaggarwalshoppe14
 
I really need some help if I have this right so far. Please Resub.pdf
I really need some help if I have this right so far. Please Resub.pdfI really need some help if I have this right so far. Please Resub.pdf
I really need some help if I have this right so far. Please Resub.pdfaggarwalshoppe14
 
I receive this answer for one of my questions, I need the reference .pdf
I receive this answer for one of my questions, I need the reference .pdfI receive this answer for one of my questions, I need the reference .pdf
I receive this answer for one of my questions, I need the reference .pdfaggarwalshoppe14
 
I really need some help if I have this right so far. PLEASE CHANG.pdf
I really need some help if I have this right so far. PLEASE CHANG.pdfI really need some help if I have this right so far. PLEASE CHANG.pdf
I really need some help if I have this right so far. PLEASE CHANG.pdfaggarwalshoppe14
 
I need this code, to show ALL inventory items, then with the remove .pdf
I need this code, to show ALL inventory items, then with the remove .pdfI need this code, to show ALL inventory items, then with the remove .pdf
I need this code, to show ALL inventory items, then with the remove .pdfaggarwalshoppe14
 
I need help with the last 2 methods only in Huffman.java file the me.pdf
I need help with the last 2 methods only in Huffman.java file the me.pdfI need help with the last 2 methods only in Huffman.java file the me.pdf
I need help with the last 2 methods only in Huffman.java file the me.pdfaggarwalshoppe14
 
I need help creating this flutter applicationPlease provide a com.pdf
I need help creating this flutter applicationPlease provide a com.pdfI need help creating this flutter applicationPlease provide a com.pdf
I need help creating this flutter applicationPlease provide a com.pdfaggarwalshoppe14
 
His Majesty�s Government report that 20 of officials arrive late fo.pdf
His Majesty�s Government report that 20 of officials arrive late fo.pdfHis Majesty�s Government report that 20 of officials arrive late fo.pdf
His Majesty�s Government report that 20 of officials arrive late fo.pdfaggarwalshoppe14
 
HIVin RNA genomu, bir RNA ablonundan bir DNA genomunu sentezlemek i.pdf
HIVin RNA genomu, bir RNA ablonundan bir DNA genomunu sentezlemek i.pdfHIVin RNA genomu, bir RNA ablonundan bir DNA genomunu sentezlemek i.pdf
HIVin RNA genomu, bir RNA ablonundan bir DNA genomunu sentezlemek i.pdfaggarwalshoppe14
 
Hile ��geni bileenlerini a�klar. Tannm bir kriminolog olan Donald .pdf
Hile ��geni bileenlerini a�klar. Tannm bir kriminolog olan Donald .pdfHile ��geni bileenlerini a�klar. Tannm bir kriminolog olan Donald .pdf
Hile ��geni bileenlerini a�klar. Tannm bir kriminolog olan Donald .pdfaggarwalshoppe14
 
Hi, I need help with this Probability question. Please show work and.pdf
Hi, I need help with this Probability question. Please show work and.pdfHi, I need help with this Probability question. Please show work and.pdf
Hi, I need help with this Probability question. Please show work and.pdfaggarwalshoppe14
 
Hi could I get the java code for all the tasks pls, many thanks!.pdf
Hi could I get the java code for all the tasks pls, many thanks!.pdfHi could I get the java code for all the tasks pls, many thanks!.pdf
Hi could I get the java code for all the tasks pls, many thanks!.pdfaggarwalshoppe14
 
HHI analysis indicates that many states have a highly concentrated i.pdf
HHI analysis indicates that many states have a highly concentrated i.pdfHHI analysis indicates that many states have a highly concentrated i.pdf
HHI analysis indicates that many states have a highly concentrated i.pdfaggarwalshoppe14
 
Hello I need help configuring the regression equation for this scatt.pdf
Hello I need help configuring the regression equation for this scatt.pdfHello I need help configuring the regression equation for this scatt.pdf
Hello I need help configuring the regression equation for this scatt.pdfaggarwalshoppe14
 
Health Economics with Taxation and Agrarian ReformActivity 2 Grap.pdf
Health Economics with Taxation and Agrarian ReformActivity 2 Grap.pdfHealth Economics with Taxation and Agrarian ReformActivity 2 Grap.pdf
Health Economics with Taxation and Agrarian ReformActivity 2 Grap.pdfaggarwalshoppe14
 
Here is app.js, artist.js and songs.js file. Can you look at the my .pdf
Here is app.js, artist.js and songs.js file. Can you look at the my .pdfHere is app.js, artist.js and songs.js file. Can you look at the my .pdf
Here is app.js, artist.js and songs.js file. Can you look at the my .pdfaggarwalshoppe14
 
Here is a short amino acid sequence mapped as polar (P) and nonpolar.pdf
Here is a short amino acid sequence mapped as polar (P) and nonpolar.pdfHere is a short amino acid sequence mapped as polar (P) and nonpolar.pdf
Here is a short amino acid sequence mapped as polar (P) and nonpolar.pdfaggarwalshoppe14
 
Here are the instructions and then the code in a sec. Please R.pdf
Here are the instructions and then the code in a sec. Please R.pdfHere are the instructions and then the code in a sec. Please R.pdf
Here are the instructions and then the code in a sec. Please R.pdfaggarwalshoppe14
 
help write program Project Desoription The purpose of thi project i.pdf
help write program Project Desoription The purpose of thi project i.pdfhelp write program Project Desoription The purpose of thi project i.pdf
help write program Project Desoription The purpose of thi project i.pdfaggarwalshoppe14
 
I need a case analysis using Harvards Business School format please.pdf
I need a case analysis using Harvards Business School format please.pdfI need a case analysis using Harvards Business School format please.pdf
I need a case analysis using Harvards Business School format please.pdfaggarwalshoppe14
 

Plus de aggarwalshoppe14 (20)

I am sure you have heard the adage �my word is my bond�. We do not k.pdf
I am sure you have heard the adage �my word is my bond�. We do not k.pdfI am sure you have heard the adage �my word is my bond�. We do not k.pdf
I am sure you have heard the adage �my word is my bond�. We do not k.pdf
 
I really need some help if I have this right so far. Please Resub.pdf
I really need some help if I have this right so far. Please Resub.pdfI really need some help if I have this right so far. Please Resub.pdf
I really need some help if I have this right so far. Please Resub.pdf
 
I receive this answer for one of my questions, I need the reference .pdf
I receive this answer for one of my questions, I need the reference .pdfI receive this answer for one of my questions, I need the reference .pdf
I receive this answer for one of my questions, I need the reference .pdf
 
I really need some help if I have this right so far. PLEASE CHANG.pdf
I really need some help if I have this right so far. PLEASE CHANG.pdfI really need some help if I have this right so far. PLEASE CHANG.pdf
I really need some help if I have this right so far. PLEASE CHANG.pdf
 
I need this code, to show ALL inventory items, then with the remove .pdf
I need this code, to show ALL inventory items, then with the remove .pdfI need this code, to show ALL inventory items, then with the remove .pdf
I need this code, to show ALL inventory items, then with the remove .pdf
 
I need help with the last 2 methods only in Huffman.java file the me.pdf
I need help with the last 2 methods only in Huffman.java file the me.pdfI need help with the last 2 methods only in Huffman.java file the me.pdf
I need help with the last 2 methods only in Huffman.java file the me.pdf
 
I need help creating this flutter applicationPlease provide a com.pdf
I need help creating this flutter applicationPlease provide a com.pdfI need help creating this flutter applicationPlease provide a com.pdf
I need help creating this flutter applicationPlease provide a com.pdf
 
His Majesty�s Government report that 20 of officials arrive late fo.pdf
His Majesty�s Government report that 20 of officials arrive late fo.pdfHis Majesty�s Government report that 20 of officials arrive late fo.pdf
His Majesty�s Government report that 20 of officials arrive late fo.pdf
 
HIVin RNA genomu, bir RNA ablonundan bir DNA genomunu sentezlemek i.pdf
HIVin RNA genomu, bir RNA ablonundan bir DNA genomunu sentezlemek i.pdfHIVin RNA genomu, bir RNA ablonundan bir DNA genomunu sentezlemek i.pdf
HIVin RNA genomu, bir RNA ablonundan bir DNA genomunu sentezlemek i.pdf
 
Hile ��geni bileenlerini a�klar. Tannm bir kriminolog olan Donald .pdf
Hile ��geni bileenlerini a�klar. Tannm bir kriminolog olan Donald .pdfHile ��geni bileenlerini a�klar. Tannm bir kriminolog olan Donald .pdf
Hile ��geni bileenlerini a�klar. Tannm bir kriminolog olan Donald .pdf
 
Hi, I need help with this Probability question. Please show work and.pdf
Hi, I need help with this Probability question. Please show work and.pdfHi, I need help with this Probability question. Please show work and.pdf
Hi, I need help with this Probability question. Please show work and.pdf
 
Hi could I get the java code for all the tasks pls, many thanks!.pdf
Hi could I get the java code for all the tasks pls, many thanks!.pdfHi could I get the java code for all the tasks pls, many thanks!.pdf
Hi could I get the java code for all the tasks pls, many thanks!.pdf
 
HHI analysis indicates that many states have a highly concentrated i.pdf
HHI analysis indicates that many states have a highly concentrated i.pdfHHI analysis indicates that many states have a highly concentrated i.pdf
HHI analysis indicates that many states have a highly concentrated i.pdf
 
Hello I need help configuring the regression equation for this scatt.pdf
Hello I need help configuring the regression equation for this scatt.pdfHello I need help configuring the regression equation for this scatt.pdf
Hello I need help configuring the regression equation for this scatt.pdf
 
Health Economics with Taxation and Agrarian ReformActivity 2 Grap.pdf
Health Economics with Taxation and Agrarian ReformActivity 2 Grap.pdfHealth Economics with Taxation and Agrarian ReformActivity 2 Grap.pdf
Health Economics with Taxation and Agrarian ReformActivity 2 Grap.pdf
 
Here is app.js, artist.js and songs.js file. Can you look at the my .pdf
Here is app.js, artist.js and songs.js file. Can you look at the my .pdfHere is app.js, artist.js and songs.js file. Can you look at the my .pdf
Here is app.js, artist.js and songs.js file. Can you look at the my .pdf
 
Here is a short amino acid sequence mapped as polar (P) and nonpolar.pdf
Here is a short amino acid sequence mapped as polar (P) and nonpolar.pdfHere is a short amino acid sequence mapped as polar (P) and nonpolar.pdf
Here is a short amino acid sequence mapped as polar (P) and nonpolar.pdf
 
Here are the instructions and then the code in a sec. Please R.pdf
Here are the instructions and then the code in a sec. Please R.pdfHere are the instructions and then the code in a sec. Please R.pdf
Here are the instructions and then the code in a sec. Please R.pdf
 
help write program Project Desoription The purpose of thi project i.pdf
help write program Project Desoription The purpose of thi project i.pdfhelp write program Project Desoription The purpose of thi project i.pdf
help write program Project Desoription The purpose of thi project i.pdf
 
I need a case analysis using Harvards Business School format please.pdf
I need a case analysis using Harvards Business School format please.pdfI need a case analysis using Harvards Business School format please.pdf
I need a case analysis using Harvards Business School format please.pdf
 

Dernier

Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 

Dernier (20)

Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 

HTMLCSS help needed. Providing both HTML and CSS codes. Thank you i.pdf

  • 1. HTML/CSS help needed. Providing both HTML and CSS codes. Thank you in advance HTML Code Event Tickets Order Form New Year Central For the child in all of us!HomeAbout UsOur ProductsEvent TicketsContact Us Products of The Week...Natural Holly Berry Garland, 5f - $74.99Artificial Red Berry and White Edge Holly Leaf Christmas Garland, 5.5f - $38.99Christmas Berries Red Stems Evergreen Pine Branches, 8pcs - $15.99Order Event Tickets © 2021 New Year Central. Created by Johnny White. ***************************************************************************** ******************************* CSS Code * { margin: 0; padding: 0; } body { background-image: url("../images/berry.jpg"); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 100%; } div#frame { margin: 25px auto; padding: 20px 30px 20px 20px; width: 50%; min-width: 900px; background-color: #ffffff; background-image: linear-gradient(#ffffff 20%, #fdf7e8 70%, #ffffff 100%); border: 2px solid #009926; border-radius: 8px; box-shadow: 0px 0px 90px 2px #008020; } p { margin: 20px 0px;
  • 2. } a { color: #008020; } a:link, a:visited { text-decoration: none; } a:hover, a:focus { text-decoration: underline; } /* Header */ header { height: 160px; border-bottom: 2px solid #e8b417; } header img { float: left; } header div#header-line-1 { font-size: 300%; font-weight: bold; text-align: right; color: #ecc03b; text-shadow: 2px 2px 2px black; } header div#header-line-2 { font-size: 130%; font-weight: bold; text-align: right; font-style: italic; color: #008020; } /* aside */ aside { width: 230px;
  • 3. float: left; margin: 30px 10px 0px 0px; } aside div.sidebar-title { font-size: 115%; font-weight: bold; color: #d1a215; } aside ul { margin: 15px 0px 0px 15px; } aside ul li { margin: 15px 0px 0px 0px; } aside ul li a{ font-style: italic; font-size: 90%; } /* Main */ main { margin: 20px 0; padding-left: 20px; float: left; width: 638px; min-height: 600px; border-left: 2px solid #e8b417; } main h1 { margin: 0; font-size: 200%; } main h1:first-letter { font-size: 240%; } main h2 { margin: 25px 0px;
  • 4. font-size: 125%; } main h3 { font-size: 110%; } main ul#product-categories { list-style-type: none; } main ul#product-categories li { margin: 35px 0px; } main ul#product-categories h3 { margin-top: 10px; } main ul#product-categories p{ margin-top: 5px; } main ul#product-categories img { border: 2px solid #e8b417; border-radius: 10px; box-shadow: 0px 0px 6px 2px #ecc03b; } /* the styles for the navigation menu */ #nav_menu { margin-top: 2px; } #nav_menu ul { list-style-type: none; position: relative; } #nav_menu ul li { float: left; } #nav_menu ul li a { background-image: linear-gradient(#fdf7e8 15%, #ffffff 55%, #fdf7e8 100%); width: 180px;
  • 5. padding: 1em 0; display: block; text-align: center; text-decoration: none; font-weight: bold; } #nav_menu ul li a:hover, #nav_menu ul li a:focus { color: #d1a215; } #nav_menu a.current, #nav_menu a.current:hover, #nav_menu a.current:focus { color: #d1a215; font-weight: bold; } /* Footer */ footer { clear: left; border-top: 2px solid #e8b417; } footer p { font-size: 80%; text-align: center; } Instructions for Creating the Ticket Order Form You will use HTML5 and CSS to build a web form to be used for placing orders for New Year events tickets. When you are done, the page should look like this: Ordering Information- Evant: Number of Tickets: Payment Method Credit Card Credit Card Information Card Type: Card Number: Expiration Date: Submit Your Order o 2021 New vear Central. Greated by lohnny whita. Task specifications: You will be creating the order form in tickets_order_form.html web page, which is found in Assignment-3-Source-Files folder. 1. Code the form element: - Use 'order_form' as the value for the form's name attribute - Use 'post' as the form submission method - When you click on the Submit button, a web page called place_order.html is displayed (hint: use the form's action attribute). The place_order.html file is located in the same folder as your tickets order page. 2. Add fields/controls to the form as per the screenshot provided above: - Make sure to use label elements for displaying the text beside the input fields. - The Event select control should have the following choices: Cookie Decoration Contest Tree Decoration Contest Gift of Light Ride-Along Breakfast with Santa - The Order Type select control should have the
  • 6. following choices: - Member Package - Donor Package - Single Tickets - The Card Type select control should have the following choices: - Visa - Master Card - Discover - Code the two radio buttons so that: - They are part of the same radio group (ie. clicking on one of them deselects the other one) - User can activate them by clicking on the labels - The two select controls used for Expiration Date are to have the following choices - The month list should have values from January through December - The year list should have values from 2021 through 2027 - Use fieldset and legend elements to group the form elements as shown - Set the autofocus on the Email field. 3. Add validation for form data entry using the available HTML5 and CSS 3 data validation 'tools': - If you haven't already, make sure that you use the appropriate HTML5 elements for the Email, Phone Number and Number of Tickets fields. - Code (only) the following fields on the form as required using the appropriate HTML5 attribute: Email, First Name, Last Name, City, Province, Postal Code, Card Number - Use the appropriate HTML5 attribute to specify regular expressions to be used to validate the data entered so that it matches the following patterns: Province: expecting a 2-letter code Postal code: expecting exactly 6 alphanumeric characters Phone Number: expecting the value to be provided in '999- 999-9999' format Number of tickets: expecting a number - Card Number: expecting a 16-digit entry NOTE: Look up regular expressions you'll need for this task in the lesson slides (week 10) and/or in the exercise we have done in the class. - When a user hovers over each of the fields validated with a regular expression, a message should be displayed informing the user of what the accepted data format is, for that particular field. (As an example, see the message shown on mouse over the Postal Code field, on the form screen shot.) - Use the placeholders for the form fields as shown in the screen shot. 4. Style the form and its elements as per the design, by modifying/adding CSS styles in main.css: - Use margin to add top and bottom spacing for fieldsets elements as needed - Use margin to add bottom spacing for legend elements - Use bold and grey colour for legend text - Set font-size as follows: - for legend elements: 85% - for label, input and select elements: 90% - Style the labels and input fields so that they appear as per the design: the labels display on the left, input fields on the right side the label text is aligned to the right input fields have same width ( 15em) and are all aligned use margins on input fields to add left and bottom spacing as needed - Add CSS styles so that the required fields have a 2-pixel orange border, and the valid fields have a 1-pixel black border. - Adjust the CSS so that the radio buttons are displayed side by side, and their respective labels on their right, as shown. Hint: To achieve this you can code the id attribute for the fieldset element that is grouping the buttons (id='payment_method'), and then add the following styles to main.css: #payment_method label
  • 7. { / here add the style that will remove the float for the labels beside the radio buttons, so they appear on the right side of the buttons themselves input[type="radio"] / - here (re)set the width for the radio button controls to 'auto', and - set the left margin for the radio buttons to add space as per the design */ - Format month and year lists as shown. Hint: you can use id selectors to set the width of the month control to 7em and the width of the year control to 5em. - Have the Submit and Reset Fields button 10 em wide.