Computer Science, asked by titikshapatil098, 11 months ago

write a program using HTML with following CSS specifications
1.) the background colour of the company name should be green
2.) the text colour of the company should be red
3.) the heading should be large with font "comics sans MS"
4.) the description of the company should be displayed in blue colour in paragraph​

Answers

Answered by vinay71730
9

Answer:

<html>

<head>

<style>

body{

margin:0px;

}

.comlogo{

background-color:green;

color: red;

}

h1{

font-family:comics-san;

}

p{

color:blue;

}

</head>

<body>

your code

</body>

</html>

Answered by Anonymous
0

Answer:

</p><p></p><p>&lt;!DOCTYPE&gt; html</p><p></p><p>html, body { background:#0846A8; height: 500px; }</p><p></p><p>.container { width:100%; height: 100%; display: flex; justify-content: center; align-items: center; }</p><p></p><p>.circle { border-radius: 50%; display: flex; flex-direction: row; justify-content: center;</p><p></p><p>align-items: center; border:1px solid #000; } .outer-lv3 { background-image: linear-gradient(#870000,#FF4040,#870000);</p><p></p><p>height: 260px; width: 260px; -webkit-animation: turning 8s infinite linear;</p><p></p><p>animation: turning 8s infinite linear; } @-webkit-keyframes turning { 0% {transform: rotate(0deg)}</p><p></p><p>100% {transform: rotate(360deg)} } @keyframes turning { 0% {transform: rotate(0deg)} 100% {transform:</p><p></p><p>rotate(360deg)} } .outer-lv2 { background: #fff; background-image: linear-gradient(#DBD9D9,#FAFAFA,#DBD9D9);</p><p></p><p>height: 210px; width: 210px; } .outer-lv1 { background-image: linear-gradient(#870000,#FF4040,#870000); height: 150px; width: 150px; }</p><p></p><p>.center { background-image: linear-gradient(#0846A8,#277AFF,#0846A8); height:</p><p></p><p>100px; width: 100px; border-radius: 50%; position: relative; overflow: hidden; border:1px solid #000; }</p><p></p><p>.arrow { border-top: 35px solid #EDE8E8; border-bottom: 48px solid rgba(0,0,0,0.0); border-left: 48px solid transparent;</p><p></p><p>border-right: 48px solid transparent; position: absolute; height: 0; width: 0; } .top { top: 35px; left: 2px; }</p><p></p><p>.left { transform: rotate(72deg); top: 16px; left: -24px; } .right { transform: rotate(-72deg); top: 16px; left: 25px; } &lt;/html&gt;

Similar questions