James wants to create a web page where he can write two paragraphs of text. The first paragraph of text should be colored red and the
second blue. Which snippet of code show the principle behind how James creates this page?

James Wants To Create A Web Page Where He Can Write Two Paragraphs Of Text. The First Paragraph Of Text

Answers

Answer 1

Answer:

The first code does it

Explanation:

Each of the attached code snippet is divide into two parts.

The CSS partThe html part

From the four code snippets, the first one answers it.

The syntax to format the paragraph of an html text using css is:

p#paragraph-id{

color:color-name

}

Analysing each element

p# -> This implies that a paragraph is to be formatted

paragraph-id -> This represents the id of the paragraph

{} -> The open and close curly braces house the properties to be formatted

color:color-name -> implies that the color of the element be changed to color-name (e.g. red or blue)

In the body tag of the html code, the first paragraph has an id of para1 and the second has para2 as its id.

i.e. <p id = "para1">......

So, the first paragraph will be formatted red while the second will be blue


Related Questions

What improved image quality in televisions?
A: FM technology
B: AM technology
C: color CRTs
D: black-and-white CRTs
E: coaxial cables

Answers

Answer:

coaxial cables are the answer

it was field day for the upper grades at Rock Creek School,
Each grade had to choose a team name and a color for their tee-shirts,
Use the clues below to figure out what each grade chose for their team name and tee-shirt color, each grade can chose one color and one team name.

- The third and fifth grades didn't choose an animal for their team name.

-The forth grade ended up with red tee-shirts with sharks on the.

-The fifth graders and tornadoes are not wearing teal.

-The bears are wearing green.

​​

Answers

Answer:

its c

Explanation:

What is a resistor?
O A switch
O A light bulb
O A battery

Answers

Answer:

A Battery would be the correct awncer

anybody wanna be friends?

Answers

i wouldn't mind......

yes Avacado?????????????????????

Write a program that prints the numbers 1 - 50. If the number is even print the word 'EVEN!' next to it. If the number is odd print the word 'ODD!' next to it.

Answers

In python 3.8:

for x in range(1,51):

   print(str(x)+" EVEN!" if x %2==0 else str(x)+" ODD!")

This works for me. Best of luck.

what class are you in?
can you help me in connection?

Answers

Answer:personal computer:)

Explanation:

Which job role requires you to create user guides for computer products and services?
A
creates users guides for computer products and services.
Reset
Next
Which job role requires you to create user guides for computer products and services

Answers

Answer: Technical writer

Explanation:

A technical writer is an individual who is responsible for the creation of technical documents such as user manuals, reference guides, instruction manuals, journal articles, etc.

Technical writers can work in software firms as they would be responsible for creating user guides for computer products and services.

Answer:

The answer for the blank box is :   technical writer

Explanation:

Hopefully this is right!

have a great day/eve!

Question #5
Multiple Choice
Suppose this is your user-defined data type.
class player:
life = 3
magic = False
name = "
Which statement creates an instance of your data type?
O myPlayer = player()
O myPlayer.player()
O myPlayer = new player()
O myPlayer = player

Answers

Answer:  myPlayer = player()

Explanation: correct edge answer 2020

Answer: myPlayer = player()

Explanation: got it right on edgen

Complete the following sentences.
You can use shapes to create various
v. Conventional
associations continue even though trends keep changing.


BIG TEST NEED TO PASS IM FAILING

Answers

Answer:

symbols and symbolic

Explanation:

What does the "zoom tool" do in Photoshop?
O
A. All of the above
o
B. It gives the illustrator the ability to zoom in and out of the image
o
C. It gives the illustrator the ability to edit the image at a closer look
O D. It gives the illustrator the ability to erase the image better by having a closer look

Answers

Answer:

A. All of the above

Explanation:

It’s A All of above

Which of the following is a database object which allows you to ask the database about the information it contains?
A Report
B filter
C sort
D Form

Answers

Answer:

Report

Explanation:

Report shows the information being contained by a database.

please help, thank you

Answers

Answer:

radish spinach swiss chard

Explanation:

radish, swiss Chard, spinach

sales management at ursa major solar wants to allow users create new account records with pre populated values.which feature should administrator

Answers

Question:  sales management at ursa major solar wants to allow users create new account records with pre populated values.which feature should administrator

Answer:  Sales representatives at Universal containers often schedule in

person meetings at customer offices. Management wants to track   activities for this meeting category to clearly display customer office meetings in the account , contact or opportunitity page  layouts, as well as adding this data to reports.

Explanation:

Using 20 sentences, as a student, why is it important to identify risk and hazard inside kitchen and home and business properties?

Answers

Answer:

The answer is below

Explanation:

Hazard is something or condition that can cause injury to individuals. If properties are not managed appropriately, the hazard can be inevitable. Every hazard comes with its own risk. And Risk of hazard is the degree to which hazard can affect individuals when exposed to hazards.

Identifying hazards in the surrounding are essential. Also, identifying the risk associated with hazards can't be overemphasized. Hence, the need to identifying both the hazards and the risks associated with it.

There are various reasons it is important to identify risks and hazards inside kitchen and home and business properties. They include the following reasons:

1. It is important to identify hazards in the kitchen, home, and business properties because they may cause injury.

2. Identifying hazards will make us know how to eliminate the hazards

3. When we identify hazards we can easily prevent its future occurrence

4. Identifying hazards in the kitchen such as a bad electric cooker can prevent potential electrical shock

5. When a hazard such as leaking gas is identified, we prevent potential fire outbreak

6. Identifying hazard early is a preventive measure and it is cheaper.

7. Failure to identify hazards in business properties will lead to a great loss of profits.

8. To identify the risk of hazards is the best way to eliminate the hazards.

9. Identifying the risk of hazards can make us anticipate and quickly remove the hazards effectively.

10. It is cheaper to eliminate the risk of hazards when identified than performing repairs after hazards have caused damages.

11. Understanding and identifying the risk of hazard can help save lives, whether kitchen, home, or in business properties.

12. Identifying the risk of hazards, can lead us to have a solution in place against the hazard.

Some people worry that there won’t be enough jobs in the future because computers will be able to do everything better than people can. Do you think that will happen? Why or why not

Answers

I think this will happen brigade people are already lazy at it is and will depend on computers to help them so that’s why their won’t be any future jobs

Answer:

what they said

Explanation:

:)

Two light bulbs are connected in a series circuit. You add a third bulb in a series. All three bulbs are identical. Which of the following will happen?

Answers

Answer:

The bulbs would becom dim

Explanation:

The 3rd bulb adds too much resistance that the other bulbs go dim

plzz help me with this question.........

Write a program to input a number find the sum of digits and the number of digits. Display the output

sample input - 7359
sample digits - 24
number of digits - 4​

Answers

Answer:

str = input("Enter a number: ")

sum = 0

for c in str:

   sum = sum + int(c)

print("Sample input - {}".format(str))

print("Sum of digits - {}".format(sum))

print("Number of digits - {}".format(len(str)))

Explanation:

That's python. Was that what you were looking for?

Answer Using Java :-

import java.util.*;

public class Digit

{

public static void main(String args[ ] )

{

Scanner in=new Scanner (System.in)

System.out.print("Enter a number: ");

int n = in.nextInt();

int sum = 0, count = 0;

while (n!=0)

{

int d = n % 10;

sum + = d;

count++;

n /= 10;

}

System.out.println("Sum of digits=" +sum);

System.out.println("Number of digits=" +count);

}

}

Which graph or chart shows changes in the value of data?

a
Bar graph

b
Column chart

c
Line graph

d
Pie chart

Answers

Answer:

Bar graph and Pie chart

Answer:

C And D

Explanation:

edge2020 users


Nick is moving from Alabama to Texas. A friend of his remarked that Nick may have to pay higher taxes there. What is the cheapest and quickest
way for Nick to find out if his friend is right?
А.
hire a lawyer
B.
speak to an accountant
C.
talk to other friends
D
look up the Texas state website

Answers

Answer:

d is look up the Texas state website

Explanation:

because tell u about texas and taxes

Zack sees an online contest. He could win $10,000 instantly! On the sign-up form he enters his name and email address. He is also asked to enter his nickname, the name of any pets, and his mom's maiden name. Should he do it?

Answers

Answer:

Do not please! Online hackers and identity thieves can use such informations or clues to figure out Zack's passwords.

Explanation:

In this scenario, Zack sees an online contest stating that he could win $10,000 instantly! On the sign-up form he enters his name and email address. He is also asked to enter his nickname, the name of any pets, and his mom's maiden name.

Hence, it is advisable, that Zack shouldn't do it because online hackers and identity thieves can use such informations or clues to figure out Zack's passwords.

Basically, this type of cyber attack is simply known as baiting in social engineering.

Social engineering can be defined as a manipulative strategy or technique that involves the use of deceptive and malicious activities on unsuspecting victims in order to gain unauthorized access to their confidential or private information for fraud-related purposes. Some examples of social engineering are quid pro quo, phishing, baiting, tailgating etc.

help me i dont know this i suck at it

Answers

Answer:

Compiler, High level, Low level

Explanation:

I don't know about the last 2  

Wearables, video playback and tracking devices can help athletes because

Answers

Answer: rap accusations

Explanation:

The type of medium used to hide data in steganography is referred to as __________. This may be a photo, video, sound file, or Voice over IP, for example.

Answers

Answer:

:L

Explanation:

Answer:

symmetric cryptography

Explanation:

When you open PowerPoint online, how many blank slides will appear on the screen? (5 points)
Four
One
Three
Two

Answers

Answer:

The correct answer is: One

Explanation:

PowerPoint is a software that is used to make presentations.

It is available in Microsoft office suite.

When we open PowerPoint first there are templates to choose from. After selecting blank presentation the editor window opens and it contains only one master slide/title slide

Rest slides can be added later.

Hence,

The correct answer is: One

Answer:

it isn't one it is three

Explanation:

cause i chose one and got it wrong

how do i get around a school related block

Answers

Answer:

try putting "uk-" or "us-" depending on where you are, you could also go through your settings and try to allow everything.

Answer:

Some schools have the option to block only on regular tabs, try going into settings and disabling the block to go on incognito tabs.

Another option would be to use a different web browser, something less known but good enough that it works and isnt blocked.

You can also find certain things on online where it tells you what websites to go to, then copy a link and paste it down into the search bar where the page will come up unblocked.

I hope this helped!

PS: If you go into certain websites, block third party cookies. ;)

Which of the following is NOT true regarding fonts which should be used in memos?
O Typically serif fonts are used such as Times New Roman
O Typically sans-serif fonts are used such as Arial
O Headers should be 12-point font size
O Body text should be 10-point font size

Answers

Answer: Typically serif fonts are used such as Times New Roman.

Explanation: Have a gr8t day and pls mark me brainliest.

Which examples demonstrate common education and qualifications for Manufacturing Production Process Development careers? Check all that apply. Answer: A. Hugo uses CAD software to create a product design. D. Latisha is a Mechanical Engineer with a bachelor's degree. E. Oliver carefully calculates the dimensions of a product.

Answers

Answer:

A D E

Explanation:

I got it right on Edge.

Answer:

A D E

Explanation:

just did the work

:)))))

Which best describes what databases do?

They guarantee users find needed data.
They create categories for data.
They identify important data.
They enable users to search for data.

Answers

Answer:

I think the first one

Explanation:

not sure you can also do some research bout it

list and explain three computing devices from the 20th century​

Answers

Answer:

Calculating Machine

Graphic tablet.

Touchscreen

Explanation:

Hope this helps.

Brain-List?

Answer:

1. The First Calculating Machine (Pascaline)

2. Jacquard's Loom

3. The First Pocket Calculator

Explanation:

1. Pascaline was the first calculator or adding machine to be produced in any quantity and actually used. It was deigned at about 1642-1644.

2. Jacquard Loom is an attachment for powered fabric looms

3. The first truly pocket-sized electronic calculator was the Busicom LE-120A "HANDY" It was marketed in 1971.

help pleaseee!!!!!!! will give brainliest !!!!!
How do you increase the number of CPUs in a virtual machine in order to optimize it?

Answers

Answer:

Not sure if this will help

Explanation:

increase the number of motherboards, and install compatible CPUs on each motherboard

Other Questions
Osvaldo wants to go to school to be a reporter. He takes out a loan for $140,000. The interest rate on this will be 3% for 4 years. What would the interest be that Osvaldo would have to pay? lemme get some help plz which expression is equivalent to 15+3x? How can invasive species be prevented? Sharing contacts is different from sharing a calendar. Use the drop-down menus to explain how.1. You can share contacts withoutside the organization without publishing online.2. You are not able to that somebody share their contacts with you.3. Both calendars and contacts are shared in emails. For the latter, the recipient clicksand selects from a list. 3. Contextualize. Prompt: Evaluate the extent to which the Industrial Revolution influenced global reform efforts from 1877 to 1922. Write two to three sentences describing a broader historical context that is relevant to the above prompt. After you complete your sample, explain how it meets the essays requirements for contextualization. People need to have ____ in the economy to spend money.A) less disposable income B) confidence C) purchasing power Solve the inequality 3(x43)6 If nine inches represent twelve feet, how many inchesrepresent 48 feet? Briefly describe the Rutherford atomic model Explain how you can find the volume of the figure below. Then, solve- what is the volume of the figure? Make sure to include your units Which are functions of a search engine? Check all that apply A grocery store sells 2 red peppers for $4.How many red peppers for $24? Which of the following words is an adjective?ArunBloveCprettyDquickly Read the quotation, and then answer the question. According to Adams, Jackson I will give brainliest of who gets the right answer first!! What is the 5th term of an arithmetic sequence of 20 terms with first and last terms of 2 and 59, respectively How do i find the values of of both x and y in a quadrilateral? In a simple food chain, small fish eat algae; bigger fish eat the smaller fish; bears eat thebigger fish.Using the above scenario, which of these would have the largest amount of availableenergy?A. Grass B. Grasshopper C. Snake D. Owl If f(x) is differentiable for the closed interval [4, 0] such that f(4) = 5 and f(0) = 9, then there exists a value c, 4 < c < 0 such that f(c) = 0 f '(c) = 0 f (c) = 1 f '(c) = 1 Help again PLZZ and thank you