Working Daily Currency Status

Developer
Size
2,171 Kb
Views
12,144

How do I make an working daily currency status?

Gets JSON data daily via fixer.io API.. What is a working daily currency status? How do you make a working daily currency status? This script and codes were developed by Azizur Rahman on 09 January 2023, Monday.

Working Daily Currency Status Previews

Working Daily Currency Status - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Working Daily Currency Status</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <link href="https://fonts.googleapis.com/css?family=Open+Sans|Varela+Round" rel="stylesheet">
<div class="container"> <h2>DATE<br><span id="cdate"></span><h2><hr> <h1>BASE <br><span>USD</span></h1><hr> <h2>EXCHANGE RATES</h2> <h3>EUR:<span id="euro"><span></h3> <h3>GBP:<span id="pound"><span></h3> <h3>JPY:<span id="yen"><span></h3> <h3>CHF:<span id="franc"><span></h3> <h3>CAD:<span id="cdollar"><span></h3> <h3>AUD:<span id="adollar"><span></h3>
</div> <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Working Daily Currency Status - Script Codes CSS Codes

body{ background-color:#424242;
}
.container{ width:240px; margin:60px auto; background-color: #212121; color:white; padding:20px; text-align:center; box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
h1, h2 { font-family:'Varela Round'; color: #c2185b;
}
h3, #refresh{ font-family:'Open Sans'
}
.rates{ text-align:center;
}
h3{ color:#ffa000;
}
span, hr{ color:white;
}

Working Daily Currency Status - Script Codes JS Codes

$.getJSON( "https://api.fixer.io/latest?base=USD", function(data) { var cDate = data.date; $('#cdate').append(' ' + cDate); $('#euro').append(" " + data.rates.EUR); $('#pound').append(" " + data.rates.GBP); $('#yen').append(" " + data.rates.JPY); $('#franc').append(" " + data.rates.CHF); $('#cdollar').append(" " + data.rates.CAD); $('#adollar').append(" " + data.rates.AUD); }
);
Working Daily Currency Status - Script Codes
Working Daily Currency Status - Script Codes
Home Page Home
Developer Azizur Rahman
Username azizurrahman
Uploaded January 09, 2023
Rating 3.5
Size 2,171 Kb
Views 12,144
Do you need developer help for Working Daily Currency Status?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Azizur Rahman (azizurrahman) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!