ዜና
Addis Ababa
Addis Ababa, ET
10:53 pm,
Apr 30, 2025
light rain
Humidity:
84 %
Pressure:
1017 mb
Wind:
6 mph
Wind Gust:
11 mph
Clouds:
100%
Visibility:
10 km
Sunrise:
6:09 am
Sunset:
6:35 pm
Weather from OpenWeatherMap
No posts found
የዓለም አቀፍ ዜና
AMN ሚያዚያ 22/2017 ዓ.ም ፕሬዚዳንት ዶናልድ ትራምፕ የሁለተኛ የስልጣን ዘመናቸውን 100ኛ ቀን ሚቺጋን ላይ ባደረጉት የምርጫ ቅስቀሳ በሚመስል ሰልፍ አክብረዋል።...
የአፍሪካ ዜና
AMN – ሚያዚያ 21/2017 ዓ.ም በቴክኖሎጂ የጎለበተች አፍሪካን በጋራ ለመምራት ኢኖቬሽን አፍሪካ (Innovation Africa) 2025 ጉባኤ የላቀ...
ፖለቲካ
ልማት
አረንጓዴ ዐሻራ
AMN-ሚያዝያ 19/2017 ዓ.ም ዘንድሮ በሚካሄደው የአረንጓዴ አሻራ መርሃ ግብር ለሀገር በቀል ችግኞች ትኩረት ተሰጥቶ ቅድመ ዝግጅት እየተደረገ እንደሚገኝ ተገልጿል።...
ትምህርት
AMN – ሚያዝያ 20/2017 ትምህርት የዕድገት መሰረት እንዲሁም የለውጥ ቁልፍ መሳሪያ ነው ሲሉ ምክትል ጠቅላይ ሚኒስትር ተመስገን ጥሩነህ ገለጹ። ምክትል...
ዲፕሎማሲ
AMN ሚያዚያ 22/2017 ዓ.ም ፕሬዚዳንት ዶናልድ ትራምፕ የሁለተኛ የስልጣን ዘመናቸውን 100ኛ ቀን ሚቺጋን ላይ ባደረጉት የምርጫ ቅስቀሳ በሚመስል ሰልፍ አክብረዋል።...
ቢዝነስ
የዉጭ ምንዛሬ
fetch('https://api.nbe.gov.et/api/get-interest-rates')
.then(response => response.json())
.then(data => {
var cbrContainer = document.getElementById("cbr");
cbrContainer.innerText = `${data?.data.data[0].central_bank_rate}` ;
var tbrContainer = document.getElementById("tbr");
tbrContainer.innerText = `${data?.data.data[0].t_bill_rate}` ;
var msrContainer = document.getElementById("msr");
msrContainer.innerText = `${data?.data.data[0].minimum_saving_rate}` ;
// Display the fetched data
})
.catch(error => console.error(error));
fetch('https://api.nbe.gov.et/api/one-daily-indicative-mid-rates')
.then(response => response.json())
.then(data => {
var exchangeMidValue = document.getElementById("exchangeMidValue");
exchangeMidValue.innerText = `${data?.data.price}` ;
var exchangeMidDate = document.getElementById("exchangeMidDate");
exchangeMidDate.innerText = `${data?.data.date}` ;
;
// Display the fetched data
})
.catch(error => console.error(error));
// Fetch data from the API
fetch('https://api.nbe.gov.et/api/get-selected-exchange-rates')
.then(response => response.json())
.then(data => {
var exchangeDataContainer = document.getElementById('exchangeData');
data?.data?.forEach(function(data) {
// Create the HTML structure for each data item
var html = `
${data.currency.code.toLowerCase()}
${data.currency.name}
Buying
${data.buying} ETB
Selling
${data.selling} ETB
Mid Rate
${data.weighted_average} ETB
`;
// Append the HTML to the container element
exchangeDataContainer.innerHTML += html;
});
// Display the fetched data
})
.catch(error => console.error(error)); .ExchangesContainerTwo{
margin-bottom: 10px;
color: white;
}
.ExchangesContainerTwo .interstPercent{
font-size: 40px;
line-height: 0.6;
display: block;
font-weight: 600;
margin-bottom: 20px;
display: block;
color: #FCC676;
}
.interestName{
display: block;
margin-bottom: 10px !important;
}
.interestText{
display: block;
margin-top: 0px
}
.ExchangesHeaderContainer{
display: flex;
flex-wrap: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
}
.marginInterest{
color: white !important;
margin-bottom: 20px !important;
}
.dFlex{
display: flex;
justify-content: space-between;
align-items: top;
}
.interstTypes{
display: flex;
justify-content: space-between;
}
.midRateContainer {
border-radius: 5px;
gap : 10px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 50px;
background: var(--ast-global-color-1);
}
.midRateContainer h3 {
color: white;
text-transform: uppercase;
font-size: 20px ;
text-align: center;
margin: 0
}
.midRateContainer p {
padding: 0;
font-weight: 300;
text-transform: uppercase;
margin: 0;
}
.midRateContainer .separator {
border: 1px solid #202F3F;
height: 40px;
}
.midRateContainer .moneyValue {
font-size: 35px;
font-weight:700 !important;
}
.colorBlue {
color: #202F3F;
}
.ExchangesContainerTwo table {
border-collapse: collapse;
width: 100%;
border: none;
table-layout: fixed !important;
}
.ExchangesContainerTwo th, td {
border: 1px solid black;
border: none;
background: none;
/*padding: 0px;*/
text-align: left !important;
vertical-align: top; /* Align headers to the top */
text-align: center;
}
.ExchangesContainerTwo tr{
background: none;
box-shadow: none;
}
.interestTD{
padding: 10px 0;
}
@media only screen and (max-width: 767px) {
.ExchangesContainerTwo .interstPercent{
font-size: 35px;
}
.interestTD{
font-size: 14px;
text-transform: capitalize;
padding-right: 10px;
}
.tableInterest tr .interestTD:last-child {
padding-right: 0px;
}
.ExchangesHeaderContainer div:last-child{
margin-left: 10px;
}
.tableTop td {
padding: 10px 5px;
}
.midRateContainer h3 {
color: white;
text-transform: uppercase;
font-size: 16px ;
text-align: left;
margin: 0
}
.midRateContainer p {
padding: 0;
font-weight: 900;
text-transform: uppercase;
margin: 0;
}
.midRateContainer .separator {
border: 1px solid #202F3F;
}
.midRateContainer .moneyValue {
font-size: 20px;
font-weight: 600 !important;
}
}
ማስታወቂያ


አዲስ ቴሌቪዥን
ዜና አዲስ
ዉሎ አዲስ
አዲስ ማለዳ
አዲስ መዝናኛ
ወቅታዊ
ጤና
AMN- ሚያዝያ 19/2017 ዓ.ም በሀገር አቀፍ ደረጃ የላቦራቶሪ አቅምን ለማሳደግ እየተሰራ ያለዉ ስራ አበረታች ነው ሲሉ የጤና ሚኒስትር ዶክተር መቅደስ ዳባ...
ቴክ
AMN – ሚያዝያ 20/2017 ዓ.ም የአለም የአእምሯዊ ንብረት ቀን በአለም ለ25ኛ፣ በኢትዮጵያ ለ23ኛ ጊዜ “ሙዚቃና አእምራዊ ንብረት ” በሚል መሪ...
በብዛት የተነበቡ
No posts found
ስፖርት
እግር ኳስ
አትሌቲክስ
የፎቶ ጋለሪ
























































a-3e
a-2e
a-1e
K
image-4
image-3
A1
a (5)
a (4)
a (3)
a (2)
a (1)
466682100_991501209689919_4250014809178388375_n
465866165_991308993042474_7928490494504150045_n
3
466129764_992052169610226_3565668215997273249_n
or3
8
X32
X27
A2
aa4
7ሀ
XXX
GA
Cof
PMb4
PMb3
480523240_1064144719092234_560211933013581764_n
480326250_1064144722425567_5026153253314745948_n
480307874_1064144715758901_4651153009487841777_n
480572884_1064089855764387_4027778129343071474_n
480565905_1064096099097096_7554643133246719297_n
480644072_1062446135928759_4289751017201674992_n
480487253_1062446245928748_2639909700528289692_n
480510041_1062447119261994_8199270392917728320_n
480234748_1062447045928668_7361763779815169427_n
480551711_1062437035929669_2564479467532925173_n
480227220_1062426089264097_9008591577926823305_n
480468416_1062405535932819_1577732436167294809_n
480333971_1062405545932818_181189844162893925_n
480740673_1062383999268306_2755454687387163598_n
480322164_1048656133969423_5197113788683758459_n
Processed with VSCO with a1pro preset
480742718_1062374835935889_5485970599507381612_n
480595647_1062371715936201_7438129061952706410_n
480275980_1062346729272033_8697869844483523969_n
480400410_1062346755938697_3800025537938694326_n
480086673_1062154382624601_6229755472812011199_n
480331176_1062096895963683_2539874786931013749_n
480603648_1062091609297545_5612532905210677802_n
480570221_1062377229268983_3870400214170710054_n
480634352_1062377259268980_8321381274623625643_n
480634352_1062377259268980_8321381274623625643_n
480570221_1062377229268983_3870400214170710054_n
480288953_1062034259303280_2024321176486413405_n























































