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
ivanzaharov [21]
3 years ago
15

How can i use css/html coding to create links

Computers and Technology
1 answer:
erik [133]3 years ago
8 0
Three Ways to Insert CSSThere are three ways of inserting a style sheet:External style sheetInternal style sheetInline styleExternal Style SheetWith an external style sheet, you can change the look of an entire website by changing just one file!Each page must include a reference to the external style sheet file inside the <link> element. The <link> element goes inside the head section:<span><head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head></span>An external style sheet can be written in any text editor. The file should not contain any html tags. The style sheet file must be saved with a .css extension. An example of a style sheet file called "myStyle.css", is shown below:<span><span>body </span>{
    background-color:<span> lightblue;</span>}

<span>h1 </span>{
    color:<span> navy;</span>
    margin-left:<span> 20px;</span>}
</span>
Hint: Do not add a space between the property value and the unit (such as margin-left:20 px;). The correct way is:<span>margin-left:20px;
</span>
nternal Style SheetAn internal style sheet may be used if one single page has a unique style.Internal styles are defined within the <style> element, inside the head section of an HTML page:<span>Example<span><span><head>
<style>
body </span>{
    background-color:<span> linen;</span>
}

<span>h1 </span>{
    color:<span> maroon;</span>
    margin-left:<span> 40px;</span>
} 
<span></style>
</head></span></span></span>Inline StylesAn inline style may be used to apply a unique style for a single element.An inline style loses many of the advantages of a style sheet (by mixing content with presentation). Use this method sparingly!To use inline styles, add the style attribute to the relevant tag. The style attribute can contain any CSS property. The example shows how to change the color and the left margin of a <h1> element:<span>Example<span><h1 style="color:blue;margin-left:30px;">
This is a heading.</h1></span></span>Multiple Style SheetsIf some properties have been defined for the same selector in different style sheets, the value will be inherited from the more specific style sheet. For example, assume that an external style sheet has the following properties for the <h1> element:<span><span>h1 </span>{
    color:<span> navy;</span>
    margin-left:<span> 20px;</span>
}</span>then, assume that an internal style sheet also has the following property for the <h1> element:<span><span>h1 </span>{
    color:<span> orange;</span>    
}</span>If the page with the internal style sheet also links to the external style sheet the properties for the <h1> element will be:<span>color: orange;
margin-left: 20px;</span>The left margin is inherited from the external style sheet and the color is replaced by the internal style sheet.Multiple Styles Will Cascade into OneStyles can be specified:in an external CSS fileinside the <head> section of an HTML pageinside an HTML elementCascading orderWhat style will be used when there is more than one style specified for an HTML element?Generally speaking we can say that all the styles will "cascade" into a new "virtual" style sheet by the following rules, where number three has the highest priority:Browser defaultExternal and internal style sheets (in the head section)Inline style (inside an HTML element)So, an inline style (inside an HTML element) has the highest priority, which means that it will override a style defined inside the <head> tag, or in an external style sheet, or in a browser (a default value).
<span><span>
Hint: If the link to the external style sheet is placed below the internal style sheet in HTML <head>, the external style sheet will override the internal style sheet!</span></span>
You might be interested in
7. What information appears on the vertical axis?
ivann1987 [24]

Answer: range of values

Explanation:

3 0
3 years ago
Which of the following is a job description for a person with a degree in Information Technology? radiology engineer web develop
Jet001 [13]

Answer: Web developer

Explanation: Web developer is a job where you have to develop World Wide Web applications by programming or applications that run over the internet, and this degree would need a degree in information technology

The other degrees needed for the following jobs:

1.    Radiology engineer: Radiology is a study of diagnosing and treating diseases with the help of medical imaging. So, it needs a degree in medical combined with physics and chemistry.

2.    Toxicologist broadcast technician: is a job where the technician has to determine the factors which contributed to a person’s death. So, a person should have a degree in medicine to become a toxicologist technician

6 0
3 years ago
Your corporation hosts a Web site at the static public IP address 92.110.30.123.
ivann1987 [24]

Answer:

Check the explanation

Explanation:

In line with the question, we can now derive that:

The router's outside interface IP address will be 92.110.30.65.

The router's inside interface IP address will be 192.168.11.254.

The Web site's IP public IP address will be 92.110.30.123.

The private IP address of the backup Web server will be 192.168.11.110.

and when we say IP address, it stands for Internet Protocol, it is a set of usual predefined rules which are utilized to administrate the manner to which data packets are sent over the internet. An IP address, which is typically just identified as an IP, is a sequence of figures used to uniquely recognize a computer/device on a particular network or on the internet space.

7 0
2 years ago
Write a program that fills a list with 100 random numbers between 0 and 200, inclusive. Traverse through the list and only print
svet-max [94.6K]

Answer:

Follows are the code to this question:

import random as ra#import package  

r=[ra.randint(0, 200) for x in range(100)]#defining a variable r that use rand method to add value in list  

j= [i for i in r if i < 99]#defining j variable that checks list value is less than 99

print (j)#print list value

Output:

[20, 23, 66, 47, 89, 7, 18, 13, 92, 31, 23, 60, 3, 52, 18, 20, 85, 64, 55, 98, 14, 80, 80, 14, 57, 92, 76, 14, 91, 83, 87, 80, 16, 50, 7, 88, 19, 4, 72, 23, 27, 79, 23]

Explanation:

In this code, package random is imported, in the next step, the r variable is declared, that uses the randit method, and use for loop that adds value in the list. In the next step, the j variable is declared, which uses a for loop and a conditional statement to check its value is less than 99, add print its value.

7 0
2 years ago
Can anyone tell me this answer?
algol [13]

Answer: yes it is

Explanation:

u can research it up

4 0
2 years ago
Other questions:
  • The Internet has made it possible for most people to order all of their clothing online. While this may be a preference for some
    5·1 answer
  • Consider the following class definitions. public class BClass { private int x; public void set(int a) { x = a; } public void pri
    11·1 answer
  • The essence of strategy is ____, so competitive advantage is often gained when an organization tries a strategy that no one has
    15·1 answer
  • Which of these is one of the primary concerns for protecting your family when online?
    5·2 answers
  • What do the letters of the su command stand for? what can you do with su besides give yourself root privileges? "what can you do
    5·1 answer
  • Wat kind o mouse pleese hep meh​
    11·1 answer
  • When solving for K, when cell potential is known, what is one of the first steps to follow?
    8·1 answer
  • Sonic the Hedgehog (1991)
    14·1 answer
  • What is the best stratiget to avoid paying intrest in your credit cared
    13·1 answer
  • Which of the following are some popular debugging techniques?
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!