in addition to good design sense, what else do web designers need to be proficient in?

Answers

Answer 1

In addition to good design sense, web designers need to be proficient in front-end coding languages.

A web designer refers to an individual who is saddled with the responsibility of writing executable codes (instructions) for the design and development of a website, especially by using a hypertext markup language (HTML).

Generally, it is expected that all web designers a good design sense in website development. Additionally, web designers need to be proficient in front-end coding languages, so as to ensure the graphical display and user-interface (UI/UX) are attractive and properly rendered.

Some examples of front-end coding languages include:

CSSHTMLJavascriptReactJQuerryVue

Read more on web design here: https://brainly.com/question/8391970


Related Questions

What is this on G00gel Documents , how do I fix it?

Answers

Answer:

Sorry but it donest show the picture

Explanation:

Question 7 of 10
What are the three main parts to a slide presentation's structure?
A. Thesis statement, supporting evidence, and concluding quotes
B. Main idea, body, and summary
C. Introduction, body, and conclusion

D. Body, conclusion, and references

Answers

Answer:

A

Explanation:

relevez le rôle principal de la peau dans l,organime humain. je suis bloquée aidez moi metci​

Answers

Answer:

language?

Explanation:

john wants to draw a letter L. The turtle is pointing towards the top of the screen. Which series of commands will draw the shape? *

BACK 100 LEFT 90 FORWARD 50
BACK 100 RIGHT 90 FORWARD 50
BACK 200 RIGHT 90 BACKWARD 50
RIGHT 180 FORWARD 100 RIGHT 90 FORWARD 50

Answers

Explanation:

BACK 100 RIGHT 90 FORWARD 50

what is internet? short ans​

Answers

Answer:

The Internet is a big network that connects computers all over the world.

This is an Image of the ......... Topology.


The person who got it right ,i will mark hem or her as brainly.​

Answers

Answer:

Bus Topology

Explanation:

[tex]{}[/tex]

What's the technique of drawing a 3D object with one vanishing point?​

Answers

I don’t no it brother n I was searching for this answer can u plz tell me
A one-point perspective drawing means that the drawing has a single vanishing point, usually (though not necessarily) directly opposite the viewer's eye and usually (though not necessarily) on the horizon line. All lines parallel with the viewer's line of sight recede to the horizon towards this vanishing point.

One Point Perspective is a type of linear perspective that uses a single vanishing point to create the illusion of depth in a work of art.
Parallel – Parallel lines are lines that never touch… even if they are extended indefinitely.
Horizontal Lines – Lines drawn from side to side level with the horizon.

write 10 place where computer use and it uses​

Answers

Answer:

dynamite ohohoh

Explanation:

nânnananananananann eh

house store school park

IT ethics are rules, policies, or principles that guide the behavior of IT professionals.
Question 7 options:
True
False

Answers

Answer: true

Explanation: true

My sister told me an extremely funny joke. what is the direct object for this sentence ?

Answers

Answer:

Explanation:

What does // this mean in your code?

Answers

Floor division

For example:-

11//5=2

Some more :-

[tex]\boxed{\begin{array}{c|c}\sf * &\sf Multiplication \\ \sf ** &\sf Exponention \\ \sf \% &\sf Remainder \\ \end{array}}[/tex]

2. Input a decimal number and test if it is not equal to 16.5.


3. If a number x, input from the keyboard is greater than 57, add 4 to x and print the

answer.


4. Input two numbers and find the average only if they are both less than 100.

Answers

Answer:

2:

decNum = float(input("Decimal number: "))

if decNum != 16.5:

   print("Does not equal")

elif decNum == 16.5:

   print("Equal")

else:

   pass

3:

if x > 57:

   x += 4

   print(x)

4:

numOne = int(input("Enter number: "))

numTwo = int(input("Enter number: "))

if numOne < 100 and numTwo < 100:

   yes = numOne + numTwo

   print(yes // 2)

else:

   pass

Explanation:

Please give me brainliest.

In the program to evaluate passwords, you gradually built a message to display to the user. What did you add to the end of each message string to start each message on a new line?

message = message + "Your password needs an uppercase letter. _____ "

\endline

\e

\n

\newline

Answers

You need to add \n to start a new line

The option that one need to add to the end of each message string to start each message on a new line is \n.

What is a message string?

This is known to be a kind of running aspect of text messages that relates to one topic or any question.

Based on the program written above, the option that one need to add to the end of each message string to start each message on a new line is \n as it is the one that will give the best result.

Learn more about program  from

https://brainly.com/question/1538272

#SPJ2

A professional is someone who uses education and acquired skills to earn money in a career.
Question 10 options:
True
False

Answers

After using my big brain it’s true

A computer has __ IP address(es).


A. Many
B. One

Answers

Answer:

A computer has one IP address(es).

One

Explanation:

Have a great day!

Write a program Election that computes the tally in a write-in election, and announces the winner. Since the votes are write-in, there is no pre-determined set of candidates. Whoever appears the most in the votes is the winner. The user enters the individual votes, one vote per line, and ends entering with typing -1 or an empty line. To compute the tally, the program uses two arrays, a String [ ] variable (names), and an int [ ] variable (count). Upon receiving a single vote, the program checks if the name on the vote appears in names, and if it does, the program adds 1 to the value of the element in count. If the name does not appear in names, the program extends both arrays by one element, stores the name in names at the last position and store 1 in count at the last position. In this manner, the two arrays will have the same lengths. The initial length is 0 for both arrays. Below is an example of how the program may runplease I need to demonstrate the code,I need some comments next to every single line

Answers

The election program illustrates the use of ArrayLists, loops and conditional statements.

ArrayLists are resizable arrays, while loops and conditional statements are used to perform repetitions and make decisions, respectively.

The election program written in Java, where comments are used to explain each line is as follows:

import java.util.*;

public class Main {

 public static void main(String[] args) {

     //This creates a Scanner object

   Scanner input = new Scanner(System.in);

   //This creates a string ArrayList for the names of the candidates

   ArrayList<String> names = new ArrayList<String>();

   //This creates an Integer ArrayList for the vote count of the candidates

   ArrayList<Integer> votes = new ArrayList<Integer>();

   //This declares name as string

   String name;

   //This gets input for the name of the candidates

   name = input.nextLine();

   //This is repeated until the user enters "-1"

   while (!"-1".equals(name)){

       //If name is in the list,

       if(names.contains(name)){

             //This gets the index of the name  

             int pos =names.indexOf(name);

             //This calculates the number of votes

             Integer value = votes.get(pos)+1;  

             //This adds the vote to the vote ArrayList

             votes.set(pos, value);

       }

       //If otherwise

       else{

           //This adds the candidate name to the name ArrayList

           names.add(name);

           //This adds 1 as the vote of the candidate to the vote ArrayList

           votes.add(1);

       }

       //This gets input for the name of another candidates

       name = input.nextLine();

   }

   //This prints the name of the election winner

   System.out.println("Winner : " +names.get(votes.indexOf(Collections.max(votes))));

 }

}

Read more about ArrayLists, loops and conditional statements at:

https://brainly.com/question/19504703

To remove a specified number of characters from anywhere within a string, you should use the ____ method.

Answers

Answer:

remove

Explanation:

Match each type of Save option on the left with a function on the right.

Answers

Answer:

the above is correct

Explanation:

What are the two main types of software​

Answers

system software and application software

Answer:

System software and application software

Explanation:

Computers were originally developed to accomplish various tasks in relative isolation, very different from the collaboration and communication we see today.

A.
True

B.
False

Answers

The answer is A, they were built for work.

what is meant by formatting the presentation?​

Answers

It's deciding how things look. If you are on powerpoint you would choose the text style and colors and organize your information how you would like. If you were giving a speech you would decide what order your information is in.

Please help please help

Answers

Answer:

Explanation:

je pense que la reponse est la suivante a et b puis c

Which of these would be the best way to inform an employee that they are losing their job?
Group of answer choices

group email

face-to-face conversation

instant message

personal email

Answers

Answer:

Terminations are a sensitive subject.

Even if you have strong reasons for letting an employee go, sitting them down to explain they are out of a job can be an awkward conversation.  

Some employers might be tempted to fire an employee using an impersonal method ⁠— like a phone call, email, or text ⁠— just to avoid that discomfort. But that is a very bad idea. We strongly recommend that employers should only fire staff during a face-to-face termination meeting.

This program is an example of:

def factorial(x):

if x == 1:

return x

else:

return x * factorial(x-1)

Group of answer choices

a do while loop.

recursion.

a for loop.

a while loop.

Answers

The program is an example of recursion

In computer programming, recursion is a process in which a function calls itself.

In a recursive program, there is a

base case and a recursive case.

When the condition of recursion is met, the base case is returned, else, the recursive case is continued.

In the function given above,

the base case is 'return x' under the condition 'if x == 1'. The recursive case is 'return x * factorial(x - 1)'.

So, the function runs until the base case it met and then it stops.

So, the program is an example of recursion.

Learn more about recursion here:

https://brainly.com/question/25797503

Jacob is preparing a presentation on the health and social advantages of taking up a sport at an early age. Most of the slides in his PowerPoint presentation provide information using colorful graphics and charts. He plans to give notes to his audience to help them follow along.

Jacob is preparing a presentation on the health and social advantages of taking up a sport at an early age. Most of the slides in his PowerPoint presentation provide information using colorful graphics and charts. He plans to give notes to his audience to help them follow along.

How should Jacob format the Notes Master so it will be most helpful to his audience?

Do not include a slide image, leaving the maximum room to take notes.
Do not include a notes pane because graphics do not need to be annotated.
*Make the slide image large so the charts can be seen clearly.
Make the text pane large so the audience can draw their own charts.

Answers

Answer:

C. Make the slide image large so the charts can be seen clearly.

Explanation: Edg

what is the hack of the cookie clicker

Answers

Answer:

Open Sesame

New Pokemon Games - The Loop. Open Sesame is the control panel for Cookie Clicker. It can be opened with a console command, or by changing the name of your bakery.

Explanation:

Hope this helps you !!

Hacking is a process to exploit a computer network system or a private network within a computer. Simply put, unauthorised access to or control of a computer network security system for unauthorised purposes.

To better explain hacking, we must first understand hackers. It’s easy to a Hacking assume that they are intelligent and highly skilled with computers.

In fact, breaking security systems requires more intelligence and expertise than actually creating them. There are no hard and fast rules that can classify hackers into neat categories. However, in common computer terminology, these are called white hats, black hats, and gray hats. White hat experts audit their own security systems to make them more resistant to hacking.

Learn more about network system here:

brainly.com/question/23294592

#SPJ6

3- It is an Information page that is displayed through one of the Internet browsers, it can be saved along htm, html page.
a. Dynamic website
f. Static website
b. Ecommerce site
c. Social media sites​

Answers

Answer:

f. Static website

Explanation:

HTML stands for hypertext markup language. It is the standard markup language for web pages that define the structure of the content. These elements are the building blocks of any website.

HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content. For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.

Static web pages are often HTML documents stored as files in the file system and made available by the web server over HTTP (nevertheless URLs ending with ". ... Static web pages are suitable for content that never or rarely needs to be updated, though modern web template systems are changing this.

Static website
Hope this will help.

PLZ HELP! 50 POINTS!!!! Which device is used to change a signal into a code?


Group of answer choices


an encoder


an antenna


a wave

Answers

B) Antenna they receives signals

Answer:

It should be an encoder.

Explanation:

hope this helps and sorry if its wrong

when a driver receives a text while driving, what can 2022 versa’s hands-free text messaging assistant do?

Answers

Answer:

It can translate text to voice

Explanation:

what are quantum computers and it uses​

Answers

Answer: Quantum computers are machines that use the properties of quantum physics to store data and perform computations

Other Questions
What is a net ionic equation? In one paragraph, explain why European nations colonized Africa in the later decades of the nineteenth century.Please make it make sense ! For Final If anyone knows ANYTHING about 1-9.Can you please help me? 4/7 + (-6/7) Find the sum. Write fractions in simplest form. calculate the quotient below and give your answer in scientific notation What is an area's climate determined by? *1 pointAngle at which the Sun strikes itThe Prime MeridianEl NioMeteorologists determine if the two triangles are congruent.If they are state how u know When a force is applied to an object, no work is being preformed on the object unless the object____. A student on a bicycle decided to determine his acceleration when coasting down a steep hill. The student started from a full stop and reached a velocity of 8.75 m/s in 3.8 s. What was his average acceleration? Assume that downhill is the positive direction. 1. Explain how Chris McCandless prepared for his trip before he left. Focus on the time right before and after his graduation from college. List at least three things he did as he prepared to go on his "odyssey" Who ever gets it right first I will give brainly and 20 points Acafeteria has two sizes of pizza to serve students during lunch.The smaller pizza has a 4-inch diameter. What is the area of the smaller pizza?What did a the area of the smaller pizza please help me with this also jjodlask Did all the stars in the universe form at around the same time? how do particles in the most rigid state of matter move Document BSource: Excerpt from Science, by Cristian Violatti, published in the Ancient History Encyclopedia. ...the development of Chinese science is strongly linked to government officials. The court astronomers were particularly interested in the sciences of astronomy and mathematics, since the calendar was a sensitive imperial matter: the life of the sky and the life on earth had to develop in harmony, and the sun and the moon regulated the different festivals. During the time of Confucius (c. 551 to c. 479 BCE), Chinese astronomers successfully calculated the occurrence of eclipses.Geometry developed as a result of the need to measure land, while algebra was imported from India. During the 2nd century BCE, after many centuries and generations, a mathematical essay named The Nine Chapters on the Mathematical Art was completed. This work contained mostly practical mathematical procedures including topics such as determining the areas of fields of different shapes (for taxation purposes), pricing of different goods, commodities rate exchange and fair taxation. This book develops algebra, geometry, and also mentions negative quantities for the first time in recorded history. Zu Chongzhi (429500 CE), estimated the right value of pi to the sixth decimal place and improved the magnet, which had been discovered centuries earlier.Where the Chinese displayed an exceptional talent was at making inventions. Gunpowder, paper, woodblock printing, [and] the compass are some of the many Chinese inventions.How did the technologies of gunpowder, printing, and the compass spread out of Asia? Where did these technologies spread to and what was their impact?HELP!!!!!!!!!!!!!!!!!! true or falsea. very little oxygen and nitrogen are found in air.b. oxygen is the main cause of the formation of rust in iron.c. impure air is odourless.d. plants take in oxygen gas during respiration.e. air contains water vapour. Some tomato ketchup accidentally got onto a piece of white fabric. Your mother suggested that lemon juice, baking soda, or vinegar would be good for removing the tomato stain. Plan and design an experiment that can be used to investigate which of the three substances is most effective in removing the tomato stain.1. Write a hypothesis for your investigation2. Identify the dependent, independent, and controlled variables.3. Outline a proposed method for the experiment you would conduct.4. What data would be collected? Suggest a suitable way(s) for recording your data.5. Identify ONE (1) possible source of error and ONE (1) precaution.Please if you see this help me answer these questions. _____ are fields that are used to personalize a mail merge documentA. rows of a spreadsheet data sourceB. Excel workbooksC. columns of the spreadsheet data source D. cells What do all eukaryotic cells have in common?