Posts

Satellite Communication

Image
                                         Satellite Microwave Communication A satellite is a physical object that revolves around the earth at a known height. Satellite communication is more reliable nowadays as it offers more flexibility than cable and fibre optic systems. We can communicate with any point on the globe by using satellite communication. MORE BLOGS AT:-  https://darkwriter17.blogspot.com How Does Satellite work? The satellite accepts the signal that is transmitted from the earth station, and it amplifies the signal. The amplified signal is retransmitted to another earth station. Advantages Of Satellite Microwave Communication: The coverage area of a satellite microwave is more than the terrestrial microwave. The transmission cost of the satellite is independent of the distance from the centre of the coverage area. Satellite communication is used in mobile and wireless communication applications. It is easy t

INTRODUCTION ON PETROLEUM

Image
PETROLEUM Petroleum  is a naturally occurring liquid found beneath the Earth's surface that can be refined into fuel.  Petroleum  is a fossil fuel, meaning that it has been created by the decomposition of organic matter over millions of years. It is formed in sedimentary rock under intense heat and pressure. How is Petroleum Formed ? Oil and natural gas were  formed  from the remains of prehistoric plants and animals—that's why they're called fossil fuels. ... Over time, increasing pressure and temperature changed the mud, sand and silt into rock (known as source rock) and slowly “cooked” the organic matter into  petroleum A  Petroleum is made of  fossil fuel,  petroleum  is formed when large quantities of dead organisms, mostly zooplankton and algae, are buried underneath sedimentary rock and subjected to both intense heat and pressure.  Petroleum  has mostly been recovered by oil drilling (natural  petroleum  springs are rare). MORE BLOGS AT:-  https://dar

DESIGN OF A WORKING CLOCK USING HTML AND C.S.S PART:-7

Image
DESIGN OF A WORKING CLOCK HI Let Work with Animation. Today we are working on simple and easy animation. Have You Seen a Clock?. Stupid Question right! Let make a Clock and give a beautiful design of it. And we gonna give a beautiful background beside the clock..  MORE BLOGS AT:-  https://darkwriter17.blogspot.com Let Start The Program.... <!DOCTYPE html> <html> <head> <title>analog clock</title> <style> .clock{ margin:0; padding: 12px; width: 520px; height: 500px; border-radius: 20%; border-color: black; border:0px; border-style: double; //background-color:HotPink; margin-left: 35%; margin-top: 9%; } .time{ width: 50px; height: 500px; position: absolute; transform-origin: 0%,100%; margin-left:230px; //border:1px solid; font-family: LUCIDA HANDWRITING; font-weight: bold; color:yellow ; } #one{ transform: rotate(30deg); } #two{ transform: rotate(60deg); } #thre

DESIGN OF A MOVING CAR USING HTML & CSS PART:-8

Image
DESIGN OF A MOVING CAR HI Let Work with Animation. Today we are working on simple and easy animation. Have You Seen a Moving Car?. Stupid Question right! Let make A Moving Car and give a beautiful design of it. And we gonna give a beautiful background beside the car..  MORE BLOGS AT:-  https://darkwriter17.blogspot.com Let Start The Program.... <!DOCTYPE html> <html> <head> <title>Movable Car</title> <style> body{ background-color:aquamarine; } *{ margin:0; padding:0px; } .pathone{ width: 500px; height:120px; background-color: black; position: relative; top: 400px; left:0px; } .pathtwo{ width:120px; height: 460px; background-color: black; position: relative; left:450px; bottom:60px; } .paththree{ width:120px; height:500px; background-color:black; position: relative; bottom:551px; left:640px; transform: rotate(135deg)

SIMPLE DESIGN OF BICYCLE USING HTML AND CSS PART:-6

Image
A MOVING BICYCLE HI.. This Is Animation work over a moving cycle. it is fun to do work over animation every one should try this amazing work .. MORE BLOGS AT:-  https://darkwriter17.blogspot.com The Program Start from Right here.... <!DOCTYPE html> <html> <head> <title>revise</title> <style> body{ background-image:url(file:///G:/image/frank-zhang-675316-unsplash.jpg); background-size: cover; } .wheelone{ width:220px; height: 220px; border-radius: 50%; border:6px double black; position:relative; top:330px; left:300px; animation:wheelonemove 0.1s infinite linear; } @keyframes wheelonemove{ from{transform:rotate(0deg);} to{transform:rotate(360deg); } } .wheeltwo{ width:220px; height: 220px; border-radius: 50%; border:6px double black; position: relative; top:100px; left: 790px; animation:wheelonemove 0.1s infinite linear; }