Calculator Tools Calculator Tools
Create

Ferencvárosi vs Qarabağ - UEFA Champions League Match Stats

Aug 12, 2026

About this app

Follow the UEFA Champions League match between Ferencvárosi and Qarabağ with detailed statistics, betting odds, and match insights.

Ferencvárosi vs Qarabağ - UEFA Champions League Match Stats Match Stats: Ferencvárosi vs Qarabağ Ligue des champions de l'UEFA - 19/08 Aperçus - 1ère mi-temps Corners: 2 - 2ème mi-temps Corners: 4 - 1ère mi-temps Cartons: 2 - Remplacements: 3 - Total Shots on Target: 5 - Fouls: 10 Betting Odds 1X2 Odds Win Ferencvárosi: 1.935 Draw: 3.625 Win Qarabağ: 4.01 Équipe qui va se qualifier pour le prochain tour Equipe 1: 1.69 Equipe 2: 2.04 Get Final Score

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Ferencvárosi vs Qarabağ - UEFA Champions League Match Stats</title>
<meta name="description" content="Follow the UEFA Champions League match between Ferencvárosi and Qarabağ with detailed statistics, betting odds, and match insights.">
<meta name="keywords" content="Ferencvárosi, Qarabağ, UEFA Champions League, Match Statistics, Football Betting, Sports Analysis">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">

<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
$("#bet-button").on("click", function() {
let team1 = "Ferencvárosi";
let team2 = "Qarabağ";
let result = "2 - 1"; // Dummy score for final result
$("#score-output").text("Final Score: " + team1 + " " + result + " " + team2);
});
});

} catch (error) {
throw error;
}
</script>

<style>
body {
background: linear-gradient(to right, #a1c4fd, #c2e9fb);
color: #343a40;
font-family: 'Roboto', sans-serif;
}
#main-container {
padding: 2em;
border-radius: 10px;
background: #ffffff;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
h1, h2, h3 {
color: #4CAF50;
}
button {
background: #4CAF50;
color: white;
}
button:hover {
background: #66bb6a;
}
.list-group-item {
transition: background-color 0.2s;
}
.list-group-item:hover {
background-color: #f1f1f1;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Match Stats: Ferencvárosi vs Qarabağ</h1>
<h2>Ligue des champions de l'UEFA - 19/08</h2>
<h3>Aperçus</h3>

<ul class="list-group">
<li class="list-group-item"> - 1ère mi-temps Corners: 2</li>
<li class="list-group-item"> - 2ème mi-temps Corners: 4</li>
<li class="list-group-item"> - 1ère mi-temps Cartons: 2</li>
<li class="list-group-item"> - Remplacements: 3</li>
<li class="list-group-item"> - Total Shots on Target: 5</li>
<li class="list-group-item"> - Fouls: 10</li>
</ul>

<h3>Betting Odds</h3>
<h4>1X2 Odds</h4>
<p><strong>Win Ferencvárosi:</strong> 1.935</p>
<p><strong>Draw:</strong> 3.625</p>
<p><strong>Win Qarabağ:</strong> 4.01</p>

<h4>Équipe qui va se qualifier pour le prochain tour</h4>
<p><strong>Equipe 1:</strong> 1.69</p>
<p><strong>Equipe 2:</strong> 2.04</p>

<button id="bet-button" class="btn btn-success">Get Final Score</button>
<p id="score-output" class="mt-3"></p>
</div>
</body>
</html>