i used basic HTML & CSS to just write little about my course of study which is Geophysics.
A Pen by Abdulwaheed Mukthar Olakunle on CodePen.
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> | |
<main id="main"> | |
<h1 id="title">GEOPHYSICIST</h1> | |
<p>We study the physical aspects of the earth.</p> | |
<figure id="img-div"> | |
<img | |
id="image" | |
src="https://earthhow.com/wp-content/uploads/2018/08/Geophysicist-Career-0-678x378.png" | |
alt="Geophysicist career is written and also showing image of a rock and some the equipment we use"/> | |
<figcaption id="img-caption"> | |
Geophysicists study the physical processes that relate to Earth and its surrounding space. For example, they work in seismic, marine and gravity for subsurface investigations. | |
</figcaption> | |
</figure> | |
<section id="tribute-info"> | |
<p>As a geophysicist, you'll study the physical aspects of the earth using a range of methods, including gravity, magnetic, electrical and seismic.</p> | |
<p>You'll play a vital role in the oil and gas industries by creating a picture of what lies below the earth's surface. You'll do this by collecting data on seismic waves, which move through and around the earth.</p> | |
<p>You'll be responsible for controlling the quality of the seismic data collected and interpreting it in order to create maps of the build-up of hydrocarbons.</p> | |
<h3 id="headline">Types of geophysicist</h3> | |
<p>Geophysicists generally work in one of three areas:</p> | |
<ol> | |
<li>acquisition</li> | |
<li>interpretation</li> | |
<li>processing.</li> | |
</ol> | |
<h3 id="headline">Responsibilities</h3> | |
<p>As a geophysicist, you'll need to:</p> | |
<ul> | |
<li>pre-plan projects before going on site</li> | |
<li>design data acquisition plans</li> | |
<li>decide on suitable seismic measurement and data-processing techniques</li> | |
<li>take equipment out to various locations around the world and deploy seismometers</li> | |
<li>observe the reaction of recording equipment to detect irregularities</li> | |
<li>use computers for data management, quality control and communication between the office and field locations</li> | |
<li>interpret and map 2D and 3D seismic data</li> | |
<li>report on collected seismic data to the team, clients, senior managers or partners at meetings and presentations</li> | |
<li>measure reservoir volumes</li> | |
<li>assess potential oil and gas yield</li> | |
<li>design, test, modify and repair seismic equipment</li> | |
<li>adapt data collection procedures</li> | |
<li>work closely with a small team of scientists and other staff who may be away in the field or offshore for several weeks at a time</li> | |
<li>compile charts and reports</li> | |
<li>write documentation and work logs</li> | |
<li>provide a range of geophysical support and technical advice and guidance</li> | |
<li>keep abreast of new and emerging technologies</li> | |
<li>improve existing techniques in data acquisition and mathematical processing, as well as seek to develop new techniques and methods</li> | |
<li>work within budget, resource and time constraints.</li> | |
</ul> | |
<h3>If you have time, you should read more about a Geophysicist: | |
<a | |
id="tribute-link" | |
href="https://www.prospects.ac.uk/job-profiles/geophysicist" | |
target="_blank" | |
>Geophysicist Job Profile</a> | |
</h3> | |
</section> | |
</main> | |
html { | |
font-size: 10px; | |
} | |
#main { | |
background-color: #CD853F; | |
font-size: 2em; | |
padding: 10px; | |
text-align: start; | |
} | |
#title { | |
color: #FFFFFF; | |
font-size: 2.25em; | |
text-align: center; | |
padding: 10px; | |
} | |
#img-div { | |
padding: 10px; | |
margin: 0 auto; | |
text-align: center; | |
display: block; | |
} | |
#image { | |
max-width: 100%; | |
height: auto; | |
display: block; | |
margin: 0 auto; | |
padding: 10px; | |
box-shadow: 10px 0px 20px; | |
} | |
#img-caption { | |
text-align: center; | |
font-family: monospace; | |
font-size: 0.7em | |
} | |
#headline { | |
color: #FFFFFF; | |
font-size: 1.5em; | |
} | |
p { | |
font-size: 1.0em; | |
} | |
h3 { | |
color: #FFFFFF; | |
} | |
#tribute-link { | |
color: #1E90FF; | |
} |
i used basic HTML & CSS to just write little about my course of study which is Geophysics.
A Pen by Abdulwaheed Mukthar Olakunle on CodePen.