How can I integrate the API field value result into the CSS container? Your guidance on how to proceed would be greatly appreciated.
Hope you have a wonderful day!
head
<style>
.container {
background-color:#fff;
border-radius:20px;
padding:100px 60px;
width:200px;
box-shadow: rgba(50,50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
</style>
body
<div class="container">METEO CHAVENAY</div>
<div id='temperature'>"temperature"</div> c° (temperature)
<span id='pressure'>"pressure"</span> hpa (pressure relative to sea level)
<span id='visibility'>"visibility"</span> km (horizontal visibility)
<span id='windspeed'>"windspeed"</span> km/h (wind speed)
<span id='winddire'>"winddire"</span> ° (wind direction)
<span id='clouds'>"clouds"</span> % (cloud cover)
<span id='sunrise'>"sunrise"</span> (Sunrise time)
<span id='sunset'>"sunset"</span> (Sunset time)
<span id='timezone'>"timezone"</span> H GMT Time zone
</div>