1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Georgia [21]
3 years ago
15

Discuss the important basic building blocks required to create a web page in HTML/XHTML. Discuss how to place CSS rules within y

our web document and how to link to external documents. Identify a few popular JavaScript libraries and discuss how some of the functionalities in these libraries can be useful in enhancing your web pages.
Computers and Technology
1 answer:
Leno4ka [110]3 years ago
4 0

Styling can be done in 3 ways:

Inline styling

External Styling

Internal Styling


Inline styling is done by using the HTML "style" attribute.

<div stlye="color:green;">Hello World</div>


Internal is done with a style tag

<style>

div {

color:green;

}

</style>


And external styling is done with a link tag. Place this in the head of the document.

<link type="text/css" rel="stylesheet" href="YourCSSFile.css">


for the building block, i'm not entirely sure what it's asking for, but here's a basic HTML setup


<!DOCTYPE HTML>

<html>

    <head>

         <title>Page Title</title>

    </head>

    <body>

         

    </body>

</html>

And I don't know too much about libraries, as I never use them. Sorry m8.

You might be interested in
Which describes the first step a crawler-based search engine uses to find information?
elena-14-01-66 [18.8K]
C is the correct answer to the problem
6 0
3 years ago
Read 2 more answers
Write 3 differences between Virtual reality and Augmented reality
nekit [7.7K]

Answer:

In vr you in a vurtial world

7 0
3 years ago
Read 2 more answers
Write a program that plays the popular scissor-rock-paper game. (A scissor can cut a paper, a rock can break a scissor, and a pa
Andrei [34K]

Answer:

Explanation:

The following program is written in Python and follows all the instructions accordingly to create the rock paper scissor game as requested.

from random import randint

answers = ["Scissors", "Rock", "Paper"]

computer = answers[randint(0, 2)]

continue_loop = False

while continue_loop == False:

   

   player_choice = input("Choose a number, 0 = Scissors, 1 = Rock , 2 = Paper?")

   player_choice = answers[int(player_choice)]

   if player_choice == computer:

       print("Tie!")

   elif player_choice == "Rock":

       if computer == "Paper":

           print("You lose!", computer, "covers", player_choice)

       else:

           print("You win!", player_choice, "smashes", computer)

   elif player_choice == "Paper":

       if computer == "Scissors":

           print("You lose!", computer, "cut", player_choice)

       else:

           print("You win!", player_choice, "covers", computer)

   elif player_choice == "Scissors":

       if computer == "Rock":

           print("You lose...", computer, "smashes", player_choice)

       else:

           print("You win!", player_choice, "cut", computer)

   else:

       print("That's not a valid play. Check your spelling!")

   continue_or_not = input("Would you like to play again? Y/N")

   continue_or_not = continue_or_not.lower()

   if continue_or_not != "y":

       break

   computer = answers[randint(0, 2)]

8 0
3 years ago
Cuáles son las redes sociales que más utilizas tú y tu familia. Describe su utilidad.
Ymorist [56]

Answer:

Facebok

Explanation:

we are able to see everthing other people do and are able to limit what are kids do

6 0
3 years ago
Which era marked a switch from agricultural practices to industrial practices?
sashaice [31]

The Industrial Revolution is the era that is marked a switch from agricultural practices to industrial practices.

<h3>What was the Inductrial revolution?</h3>

The Industrial revolution is the transition period between 1820 to 1840. The era was the development of new industries and manufacturing of products and goods in Great Britain.

Thus, the Industrial Revolution is the era that is marked a switch from agricultural practices to industrial practices.

Learn more about Inductrial revolution

brainly.com/question/1617908

#SPJ1

7 0
2 years ago
Other questions:
  • What is Gamekit Loa3's all questsions
    14·1 answer
  • Describe the role of a chemist and the role of a chemical engineer
    9·1 answer
  • when the programmers embed a javascript code within html code they place the javascript code between​
    7·2 answers
  • Your teacher needs to keep track of a biology experiment's results for all students, to
    7·2 answers
  • Go in my discord server Code is . (CebjBXN)​
    10·2 answers
  • Tạo thủ tục có tên _Pro04 để trả về số lượng tổng thời gian tham gia dự án Y của nhân viên có mã số X, với X là tham số đầu vào,
    5·1 answer
  • 17.8.1: Writing a recursive math function. Write code to complete raise_to_power(). Note: This example is for practicing recursi
    10·1 answer
  • Can rank u r guys in rocket leagye
    13·1 answer
  • Who addicted to fnaf
    5·2 answers
  • Source Code for TF2 - Please insert it here
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!