Answer:
Make sure to create and link a css file with the following:
<link rel="stylesheet" href="./styles.css">
In your css file, enter these styles:
h2 {
color: blue;
font-family: 'Times New Roman', Times, serif;
text-align: right;
}
strong {
color: teal;
font-size: 32pt;
font-weight: 700;
}
p {
text-transform: uppercase;
text-decoration: overline;
word-spacing: 10em;
}
Explanation:
In order for the html file to know where your styles are located, you have to link it to the css file with the code given above. In this file, you will enter some css to change the styles of the elements you have created in your html file.
To alter the style of an element, you first have to enter the name of the element itself, its class or its id. In this case, we have used the element itself, meaning that all the same elements in the html file will have the same style. The styles you wish to use are entered in between the curly brackets.
In your specific problem, we are trying to change the h2, strong and p elements, so that is what we have done. For the h2, you wanted it blue, therefore we use the color property to change the color. For the font, we use the font-family and finally we use text-align to align it to the right. The same pretty much applies for the other two elements. Your strong element needs to be teal,32pt and 700 bold. Therefore we use the color, font-size and font-weight properties respectively. And finally for the p element, we will use the text-transform, text-decoration and word-spacing properties respectively.
When you dont know the name of the property you want to change, I suggest googling it. You will definitely find the property name you are looking for. W3schools.com is a good source to use.
Calculate and print the average mark achieved for a test for a group of four students.
Answer:
To calculate the average, add the test scores together and divide the sum (483) by six.
Explanation:
Many times in education to teach we need to use original works.The _______ allows for reproduction of works if they are used in
certain scenarios.
Answer: Fair use
Explanation: Fair use is a legal doctrine that promotes freedom of expression by permitting the unlicensed use of copyright-protected works in certain circumstances.
How do you answer someone's question when they have asked?
Answer:
press answer or add answer
Explanation:
Answer:
there is an answer (+answer) down-left side click on it and then add the answer.
The headgear shown in the video is used to combine 3-D models with real-time information visualized through the helmet. For which type of jobsite is this technology commonly used?
Headgears such as the daqri smart helmet leverage the capability of the mixed reality to produce smart helmets which provides sleek real-time interactivity commonly isde in construction sites.
Mixed reality technology integrated the capability virtual reality to produce 3D images, which is coupled with the ability to interact with the real world.
The helmet allows engineers to picture the intended design and interact with the environment while maintaing and adhering to safety protocols.
Learn more : https://brainly.com/question/25273027
PLEASE HELP ME!!!!!! ITS FOR 100 POINTS AND BRAINLIEST!!!!!!!! NO ONE EVER WANTS TO ANSWER MY QUESTION!!! I JUST NEED SOMEONE TO EXPLAIN WHAT THEY'RE ASKING ME TO DO!!!!!!!!
Step 1: Read the Scenario
Because of the great work you’ve been doing for your department at running shoe company Runner Rush, your vice president has elected you to join an innovative cross-departmental team in your organization. The company is looking to launch a new shoe that enhances any runner’s speed. Management wants this new team to create an idea within a month. All the members of the team are alleviated of some of their regular job duties in order to join several meetings a week to brainstorm and design the new product.
Step 2: Develop a Month Plan
You have been appointed as the team leader. Develop a month plan that you will present to your teammates at the initial meeting. Focus on developing a strong team dynamic, setting goals, expectations, deadlines, and other elements that will lead the team to success. Make sure that your plan is easy to follow and clearly outlines all the required information.
Answer:
be creative
Explanation:
being creative helps you and our time brainstorm some good ideas that will help you succeed and allow your team mates to have a voice too if you follow these you will be a good team leader
i dont know if if this the answer that your looking for but i hope it help
Answer:
Do what you do best
Explanation:
Thats all i can say just do what you are good at and you can go places
Designing a video game takes tons of creativity. What inspires your personal creativity and ideas for video games? Explain and give several specific examples. How do you make sure your ideas are original and not copied directly from other video games? Explain.
Explain how the four game mechanics mentioned in the unit (reward, risk/loss, levels, and feedback) could work together to create an interesting sports video game.
You’ve learned that video games use rewards to keep players coming back for more. Can you think of an example in real life that uses rewards to keep people coming back for more? How is this similar to video game rewards? Explain.
The unit says this about levels: “As the levels get harder, the environment might also change, the music might get more intense, and the colors might change shades for a completely different mood.”
Imagine that you are working on a game, and with each level that they progress to, the player encounters a greater risk to their health and life. How would you alter the music, colors, and other aspects of the environment to reflect this risk? Describe and explain. Why do you feel these environment choices and changes reflect increasing risk?
When designing a video game, it is important to make sure that the game offers a balance of risk and reward to keep your players challenged but not frustrate them so much that they do not want to continue playing. How would you assess and test your game before completing it to ensure that you had the right balance of risk/reward? Is there any way to know that you have achieved that balance for every player?
PLZZZ HELP 50 POINTS AND BLAINLEST
Answer:
This is what I have so far
Designing a video game takes tons of creativity. What inspires your personal creativity and ideas for video games? Explain and give several specific examples. How do you make sure your ideas are original and not copied directly from other video games? Explain.
What inspires my personal creativity is all the indie games I have played in the past, and they have always amazed me with their design, video games have always been a part of me from the Mario games I played when I was little to AAA titles. My ideas are original because I’ve seen so much, that I know when something is unique and original.
Explain how the four-game mechanics mentioned in the unit (reward, risk/loss, levels, and feedback) could work together to create an interesting sports video game.
Every 10 levels is a new sport and each level is harder, but at the end of each level you earn money to buy better gear, (like a system from simple rpg,) but if you lose, you also lose money. Also, you would need to use feedback that you would get from players to improve the game.
You’ve learned that video games use rewards to keep players coming back for more. Can you think of an example in real life that uses rewards to keep people coming back for more? How is this similar to video game rewards? Explain.
When a person works 1 job for many years, they may get burnt out, but if they get a raise or a promotion every once and awhile, then they will be more motivated and come back for more. This is similar to games in a few ways, like if you play a single game for years, it will get boring, but if that game receives an update, then it will motivate people to play.
What does elif mean? A. else B. if C. eliminate if D. else if
Answer:d
Explanation:
Answer:
D. else if
Explanation:
Elif is short for else if.....
Which type of basic building blocks (constructs) is the following algorithm?
A.Sequence
B.Selection
C.Iteration
D.Iteration and Sequence
The type of basic building blocks (constructs) used in the above algorithm is: A. Sequence.
An algorithm can be defined as a standard formula (procedures) which comprises a set of finite steps or instructions, that is typically used for solving a problem on a computer.
Basically, there are three (3) basic building blocks (constructs) used in an algorithm and these include:
I. Iteration.
II. Sequence.
III. Selection.
Selection is a building block (construct) that is used to determine the set of instruction or step to execute in a program based on a Boolean expression such as:
True or False.Yes or NO.If the conditional test (grade > 50) is True (Yes), a part of the program is executed, which is to output a "Pass."
Otherwise, the program would execute and output a "Fail" i.e the conditional test (grade > 50) is False (No).
Read more: https://brainly.com/question/21172316
how do i stop my computer from automatically connecting to a wireless network
Answer:
:p
Explanation:
Should be in wireless network settings.
or
If you have a home wifi or network, lock into that (via connecting and clicking connect automatically or clicking stay connected- depending on the network band and type as well as your computer model and make)
Hope this helps :P
Have a nice day (or night)
which mathematician is regarded as the first computer programmer?
Answer:
Ada Lovelace
Explanation:
what is the relationship between energy incoming to the earth from the sun and the size of a food web?
Answer:
Food chains track the progress of energy through organisms, and food webs show the interconnectedness between food chains. All food webs begin with the sun. Generally, plants take the energy from the sun to make their own food. Other animals then eat the plants to convert the plant's food into its own food. If a second animal eats the plant eater, then the meat from the plant eater becomes energy for the meat-eating animal. When the meat-eating animal dies, its body becomes energy for tiny bacteria and other decomposing organisms, which break its body down.
Producers in a food chain or food web take the sun's light and convert it into food through photosynthesis. This group composes the largest group of organisms on Earth. Sugar results from photosynthesis, wherein plants or algae take sunlight, carbon dioxide and water and produce food (sugar) and oxygen. Effectively, the sun's energy triggers the beginning of the energy transfer in the food web.
Producers make their own food, but the higher organisms must eat the plants or other animals to get their own food. Since they consume other beings, these organisms are known as consumers. Of these consumers, herbivores eat plants and predators consume other animals. Without the action of the producers to turn sunlight into food, the producers would die, and consumers that rely on them would lose their food source and die too.
Explanation:
Which of these is a historic real-world simulation game?
A. Juggling
B. Archery
C. Golf
D. Tag
Answer:
B. Archery
Explanation:
the art, practice, or skill of shooting with bow and arrow
Answer:
B. archery
Explanation:
You are replacing a wired business network with an 802.11g wireless network. You currently use Active Directory on the company network as your directory service. The new wireless network has multiple wireless access points, and you want to use WPA2 on the network. What should you do to configure the wireless network?
a. Use shared secret authentication.
b. CONFIGURE DEVICES TO RUN IN THE INFRASTRUCTURE MODE.
c. Configure devices to run in ad hoc mode.
d. Use open authentication with MAC address filtering.
e. INSTALL A RADIUS SERVER AND USE 802.1X authentication.
Answer: Install a RADIUS server and use 802.1x authentication
Explanation:
To configure the wireless network with multiple access points and use WPA2, you should install a RADIUS server and use 802.1X authentication. The correct option is e.
What is configuration?Configuration, in its broadest sense, describes the process of setting up or organizing anything in accordance with a given specification or needs.
Installing a RADIUS server and utilizing 802.1X authentication will enable you to configure the wireless network with numerous access points, WPA2, and other security features.
You can authenticate wireless clients based on their Active Directory credentials by using a RADIUS server and 802.1X authentication.
This will increase the wireless network's security by ensuring that only authorized users can connect to it.
Ad hoc mode, open authentication with MAC address filtering, and shared secret authentication are not advised for securing a wireless network since they offer flimsy protection and are simple to crack.
Thus, the correct option is e.
For more details regarding configuration, visit:
https://brainly.com/question/13410673
#SPJ2
Differentiate between off the shelf software and bespoke software
Answer:
Custom software is specifically for the company, according to the company's way of doing business, while Off-the-shelf software is readily available and not customized. Off-the-shelf software often falls short of meeting according to specific needs as there will be a lot of unused features in this software.
Which term describes a protocol to manage a network, able to configure a network, monitor activity, and control devices?
A: Internet Message Access Protocol (IMAP)
B: Simple Network Management Protocol (SNMP)
C: Post Office Protocol version 3 (POP 3)
D: Simple Mail Transfer Protocol (SMTP)
Answer:
Simple Network Management Protocol (SNMP)
(Confirmed on EDGE)
I hope this helped!
Good luck <3
Select the correct answer.
Which of these practices should you avoid in navigation design?
O A. linking the organization logo to the home page
O B. providing users with different types of navigation elements
OC. providing users with as many choices as space allows
OD. using metaphor to represent real-life objects
Answer:
C
Explanation:
Coming from a purely practical point of view, providing users with as many choices as space allows is a bad idea. You do not want to overwhelm a navigation bar with too many options, especially not "as many choices as space allows". You should keep them short and if need be, categorised.
Hope this helps!
Can someone help me code the statments in the picture?
Answer:
(In this section I will put the code with no comments and I'll put the code plus comments in the explanation below :)
public class Main
{
public static void main(String[] args)
{
double cost = ParkingSpot.getPrice(4);
System.out.println(cost);
}
}
//End OF Main class
//ParkingSpot class
public class ParkingSpot
{
public static double getPrice(int hours)
{
double cost = 4.25 * hours;
if (cost < 7.00){
cost = 7.00;
}
if (hours > 3){
cost = cost * 0.25;
}
return cost;
}
}
Explanation:
(Here I will add the comments so you better understand what is written and whats going on :)
public class Main
{
public static void main(String[] args)
{
/* the code should be written in the ParkingSpot
* class. You may use this main method to call
* methods to test your code
*/
/*We send an integer representing x amount of hours, also calling the
method and displaying the result
*/
double cost = ParkingSpot.getPrice(4);
System.out.println(cost);
}
}
//End OF Main class
//ParkingSpot class
public class ParkingSpot
{
/* Finish the static class getPrice. The parameter hours indicates the time parked.
*/
public static double getPrice(int hours)
{
//Here we set the rates
/*
It costs 4.25 per hour to park in the ParkingSpot
If the total cost come in at less than 7.oo, the price should
be adjusted UP to 7.00, the minimum Price Allowed
If the number of hours is more than three hours,
a 25% discount should be appllied
*/
double cost = 4.25 * hours;
//If the cost is less than 7.00 we set the price up to 7.00
if (cost < 7.00){
cost = 7.00;
}
/*If hours is more than 3 (meaning 4 or it would have said 3 and/or more),
a 25% discount will be appllied*/
if (hours > 3){
cost = cost * 0.25;
}
//Return cost of parking for x amount of hours
return cost;
}
}
How graphic designing
changed in years? Write in 300 words.
Answer:
Graphic design has a rich and varied history. The word “graphic design” didn’t appear on the scene until 1922, when William Dwiggins created the word to describe the art of designing with graphics. In the earliest days of graphic design, professionals drew by hand. However, in the last 60 years graphic design has forged ahead, advancing rapidly since the addition of today’s digital art tools.
Earliest Graphic Design
Even though the term wasn’t yet coined, some of the earliest designs included typography for books and newspapers. One could also argue drawings on cave walls represent a form of ancient graphics.
Fast forward to the 1900s when posters became a form of expression. During the 1940s, graphic design appeared in propaganda posters of the era, such as the “We Can Do It” poster with Rosie the Riveter. Slogans were short, to the point, and added to a graphic that set the tone.
As technology began to change and become available to more people, the entire industry that would become known as graphic design began to emerge.
The 1990s
In 1990, Photoshop 1.0 arrived on the scene. Back then, you could only use Photoshop with Macintosh computers. The birth of this new tool again changed designers’ ability to experiment with new techniques, including overlapping text, faded elements, and digital overlays.
Grunge was also born in the ’90s, which showed up in movie poster designs, book covers, and album covers with dark looking images and simple colour palettes, such as white on black, perhaps with a pop of red. A few grunge typefaces even came about—gritty and raw-looking text.
The 2000s
The 2000s began an entirely new frontier for graphic designers. In addition to tools becoming even more powerful, people were suddenly designing on portable devices, such as smartphones. On top of that, designers began to realize the importance of designing in a way that looked good across all device types.
Movement became more of a focus, with designers looking for ways to make even static logos look like they’re in motion.
One example of a logo that appears to almost be in motion is the AT&T logo of a globe. Because of the mix of blue and white along with the angles of the logo, one can imagine that the image is spinning slowly just as the earth does. They debuted the logo in 2005.
Recent Changes
There isn’t one method that dominates graphic design today, but a mix of design techniques and styles. Trends emerge from year to year—and sometimes month to month. In 2017, the use of cutout text that meshed with strong images allowed designers to create unique looks for websites and logos.
Other trends included flat icons and the addition of videos across marketing channels. Websites need to be mobile responsive more than ever before, so simplicity is the order of the day, along with speeding up overall rendering. Print advertising meshes with mobile devices, bringing a new experience to users that is more immersive.
Evolution of Graphic Design
Where graphic design will go in the future is anyone’s guess, but the user experience is sure to remain at the forefront. Designs will become more personalized and more interactive over time. One example of this type of technology and personalization appears at Walt Disney World in Orlando. As riders stroll past digital posters, a sensor picks up the signal from a magic pass armband, and the guest’s name comes up on the poster, welcoming them.
Regardless of where design goes next, expect to see increasingly more personalized designs that enhance user experience in your daily life.
50 POINTS!!!!!!!!!!!!!!!!!!!!1
Which of the following statements about translating content are true? Select 3 options.
A. Using a translation app or plug-in is often the best choice for those on a budget.
B. Translating content is the only activity required to localize your application.
C. In almost all circumstances, it is best to have a person translate your content.
D. Components that should be translated include license agreements, notifications, and alternative text for images.
E. Unicode allows for automatic translation through the use of standard codes for each character.
Answer:
A, C, and E
A. Unicode allows for automatic translation through the use of standard codes for each character.
C. In almost all circumstances, it is best to have a person translate your content.
E. Components that should be translated include license agreements, notifications, and alternative text for images.
Explanation:
I tried your answer but it was wrong. This was the answer that came up instead.
The statements which are true about translating content are as follows:
Using a translation app or plug-in is often the best choice for those on a budget.In almost all circumstances, it is best to have a person translate your content.Unicode allows for automatic translation through the use of standard codes for each character.Thus, the correct options for this question are A, C, and E.
What do you mean by Content translation?The Content translation may be defined as the methodology of modifying existing contents that are considerably designed in order to attract, engage, and retain a particular audience.
Examples of the content translation may include blog posts, white papers, videos, podcasts, newsletters, social posts, etc. These content translations are generally done in order to make the audience understandable and be satisfied with the information that was earlier written in a very complicated form.
Therefore, the correct options for this question are A, C, and E.
To learn more about translation, refer to the link:
https://brainly.com/question/14480244
#SPJ2
18. WHICH MENU WOULD MOST LIKELY ALLOW YOU TO ADJUST YOUR LINE SPACING? *
EDIT
FILE
F0RMAT
INSERT
Explanation:
FORMAT
because it is used for the general appearance of the page
How does net neutrality protect your information? Do they connect everyone into something?
Answer:
Net neutrality law focuses on regulating and/or preventing three main practices:
Blocking: ISPs cannot block or prevent access to any lawful content on the web.
Paid prioritization: Providers cannot prioritize companies or consumers who pay a premium for a “fast lane” and keep those who don’t pay in a “slow lane.”
Throttling: Providers cannot limit your bandwidth or slow your connection based on your internet activities.
Without net neutrality or other laws protecting equal content, ISPs could, in theory, block certain websites and favor others. For example, your internet provider could theoretically make Netflix slower in order to push you towards its cable TV service.
Or, Xfinity could allow their subscribers to stream Peacock content (which they own through NBCUniversal) for free, while charging subscribers for watching Netflix. With net neutrality, you would have free and equal access to both Peacock and Netflix.
Another example would be your ISP slowing your connection every time you try to game over Twitch, but speeding it back up again when you’re not gaming, a practice known as throttling.
Explanation:
Answer: Net neutrality rules prevent this by requiring ISPs to connect users to all lawful content on the internet equally, without giving preferential treatment to certain sites or services. In the absence of net neutrality, companies can buy priority access to ISP customers.
Develop an algorithm to print the names of the candidates who should receive a refund. A refund is due if the candidate's votes received equals or exceeds 20 per cent of the votes cast in the constituency. The algorithm should also determine and print the number of candidates who received a refund. Test the algorithm with data from ten candidates. The algorithm must accept as input the names of the candidates, votes received and the votes cast in the constituency. The algorithm should print the name of the candidate and the words "Refund Due" or "No Refund" and the number of candidates who received a refund.
Answer: start
input candidate name, votes received and vote cast
if count =number of candidate who re
Explanation:
Need help Plz i have only 20 min
Answer:
1. tripod
2.srry i don't know
3. true
4. sorry i don't know
5. prob true
Answer:
Tripod
2. The pixel
3. True
4. Goo_____gle Slides
5. True
What are some other possible causes of an overheating laptop
Solve using the standard algorithm 758 x 92
The answer to the following problem using Standard Algorithm is 69,739. See the explanation below and the attached image.
How do you perform a standard Algorithm?A standard Algorithm means that you do the multiplication by hand. Traditional methods or standard algorithms involve multiplying numbers and ordering the result by bit value. Here are the steps to do long multiplication manually:
Arrange the numbers on top of each other and put the values in the columns. The number with the most digits is usually placed at the top as the multiplier.Start from one digit in the bottom digit, multiply by the last digit in the top digitWrite your answer under the equal signIf the answer is greater than nine, enter the number one as the answer and indicate the level numberContinue from right to left. Multiply one digit in the bottom digit by the next digit to the left of the top digit. If you carry a number with you, add it to the result and write the answer under the equal sign. If you must wear it again, please do. As you multiply ones by each digit of the top digit, move to the digit at the level of the bottom digit.Multiply as above, but this time write the answer on a new line and move one digit to the left. After multiplying, draw another answer line below the answer numbers in the last row.Add your column of numbers from right to left using long addition and carry as you would normally do long addition.Learn more about Standard Algorithm:
https://brainly.com/question/28626488
#SPJ1
What is a process of adding details to a model to make it less abstract
Answer:
refinement
Explanation:
https://brainly.com/question/19274876
What is the name of the file manager in Microsoft Windows?
The file manager used in Microsoft Windows is
Answer:
The File Explorer. Hope this helped! <3
Explanation:
Read the ages of three people and find the average. Display the result.
Answer:
what ages my guy
Explanation:
Blane is using the iterative process while designing his video game and sending his product through small iterations of building and testing frequently what can Blane ensure by using this process
Answer:
I believe the answer would be that he is actually creating something that people need and want. I hope this helps! :)
Answer:
Iterative game design is the process by which a video game is repeatedly proposed, prototyped, play tested and reevaluated prior to working product release. Iterative game design operates on the following principle: It is unrealistic to create an ideal product on the first try.
By creating and testing working models on core criteria (such as fun), game designers are able to refine product on a gradual basis and increase market success potential.
Explanation:
hope it will help you
in word 2010, the document information panel has been moved to the ______.
In word 2010, the document information panel has been moved to the File tab.
Microsoft Word is a word-processing program that is used for creating documents.
The steps taken to locate the document information panel is:
Open a new document in Word 2010. Click on the File tab located at the top-left corner of the window. Click on Properties and then click the Show Document PanelIn word 2010, the document information panel has been moved to the File tab.
Find out more at: https://brainly.com/question/17241854