How do I go about solving this? Any help would be appreciated. For each of these
ID: 3748954 • Letter: H
Question
How do I go about solving this? Any help would be appreciated.
For each of these functions, you should create and return the element (don’t append it directly to the body within the creating function).
Create functions to generate each of the following UI elements:
•P
• H1, H2, H3 • DIV
• SPAN
• BUTTON
• TEXT INPUT • IMG
Then I also want you to create a complex UI element. I want you to create a labelledTextField function. In it, you will create a label + text input + button, just like a search bar might have “Search: [ ] (Search)”.
You function should take text for the label, text for the button, and return a custom object with each of the 3 fields:
return {
label: /* label element goes here */ , input: /* input element goes here */ , button: /* button element goes here */
};
Test out all of these functions in your week7b.js code. You may need to create a new html file to test these functions in.
Once complete, upload the files used for this task into your Moodle Learning Portfolio.
Explanation / Answer
Find the links to the CSS files in the header and change them from this
To this
The in your style.css file, add the following:
Your header.php template should look like this.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.