|
45 | 45 | </h1> |
46 | 46 | <form class="form-container"> |
47 | 47 | <fieldset id="personal-info"> |
48 | | - <div> |
| 48 | + <!-- <div> |
49 | 49 | <label for="fname">First Name:</label> |
50 | | - <label for="lname">Last Name:</label> |
| 50 | + <input type="text" id="fname" name="fname"/> |
51 | 51 | </div> |
52 | 52 | <div> |
53 | | - <input type="text" id="fname" name="fname"/> |
| 53 | + <label for="lname">Last Name:</label> |
54 | 54 | <input type="text" id="lname" name="lname"> |
55 | | - </div> |
| 55 | + </div> --> |
| 56 | + <label for="fname" id="label-fname">First Name:</label> |
| 57 | + <input type="text" id="fname" name="fname"/> |
| 58 | + <label for="lname" id="label-lname">Last Name:</label> |
| 59 | + <input type="text" id="lname" name="lname"> |
56 | 60 | </fieldset> |
| 61 | + <fieldset id="address-info"> |
| 62 | + <label for="address">Address: </label> |
| 63 | + <input type="text" id="address" name="address"/> |
| 64 | + <label for="address-2">Address 2:</label> |
| 65 | + <input type="text" id="address-2" name="address-2"/> |
| 66 | + <label for="city">City:</label> |
| 67 | + <input type="text" id="city" name="city"> |
| 68 | + <label for="post-code">Post Code:</label> |
| 69 | + <input type="text" id="post-code" name="post-code"/> |
57 | 70 |
|
58 | | - <label for="address">Address: </label> |
59 | | - <input type="text" id="address" name="address"/> |
60 | | - <label for="address-2">Address 2:</label> |
61 | | - <input type="text" id="address-2" name="address-2"/> |
62 | | - <label for="city">City:</label> |
63 | | - <input type="text" id="city" name="city"> |
64 | | - <label for="post-code">Post Code:</label> |
65 | | - <input type="text" id="post-code" name="post-code"/> |
| 71 | + </fieldset> |
| 72 | + |
66 | 73 |
|
67 | | - <fieldset> |
| 74 | + <fieldset id="karma-radio-color"> |
68 | 75 | <legend>Select a color:</legend> |
69 | | - <input type="radio" value="karma-orange" name="device-color" id="karma-orange"> |
70 | | - <label for="karma-orange">Karma Orange</label> |
71 | | - <input type="radio" value="space-grey" name="device-color" id="space-grey"> |
72 | | - <label for="space-grey">Space Grey</label> |
73 | | - |
74 | | - <input type="checkbox" id="terms" name="terms-conditions" value="terms"> |
| 76 | + <span id="karma-red"> |
| 77 | + <input type="radio" value="karma-orange" name="device-color" id="karma-orange"> |
| 78 | + <label for="karma-orange">Karma Orange</label> |
| 79 | + </span> |
| 80 | + <span id="space-grey"> |
| 81 | + <input type="radio" value="space-grey" name="device-color" id="space-grey"> |
| 82 | + <label for="space-grey">Space Grey</label> |
| 83 | + </span> |
| 84 | + |
75 | 85 | </fieldset> |
76 | 86 |
|
77 | 87 | <fieldset> |
| 88 | + <input type="checkbox" id="terms" name="terms-conditions" value="terms"> |
78 | 89 | <label for="terms"> |
79 | 90 | By tick this box you are agree with Karma's <a href="#">Terms and Conditions</a> |
80 | 91 | </label> |
|
0 commit comments