<!DOCTYPE html>
<html lang=”hi”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>LIVE Election Results – Yashbharat</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
}
/* TOP LIVE BAR */
.live-bar {
background: red;
color: white;
padding: 10px;
font-size: 18px;
font-weight: bold;
text-align: center;
}
/* SLIDER */
.slider {
overflow: hidden;
background: black;
color: white;
padding: 12px;
}
.slide-track {
display: inline-block;
white-space: nowrap;
animation: scroll 20s linear infinite;
}
.slide {
display: inline-block;
margin-right: 50px;
font-size: 16px;
}
/* TABLE */
.table-container {
padding: 15px;
}
table {
width: 100%;
border-collapse: collapse;
}
th {
background: #222;
color: white;
padding: 10px;
}
td {
padding: 10px;
border-bottom: 1px solid #ddd;
}
/* PARTY COLORS */
.bjp { color: orange; font-weight: bold; }
.inc { color: green; font-weight: bold; }
@keyframes scroll {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
</style>
</head>
<body>
<div class=”live-bar”>
🔴 LIVE: सीट-दर-सीट नतीजे | Yashbharat.com EXCLUSIVE
</div>
<div class=”slider”>
<div class=”slide-track”>
<div class=”slide”>भोपाल: BJP +12000 लीड</div>
<div class=”slide”>इंदौर: INC +5000 लीड</div>
<div class=”slide”>कटनी: BJP WIN</div>
<div class=”slide”>रीवा: INC +3000 लीड</div>
</div>
</div>
<div class=”table-container”>
<table>
<tr>
<th>सीट</th>
<th>उम्मीदवार</th>
<th>पार्टी</th>
<th>स्थिति</th>
<th>वोट</th>
</tr>
<tr>
<td>भोपाल</td>
<td>राहुल शर्मा</td>
<td class=”bjp”>BJP</td>
<td>लीड</td>
<td>120000</td>
</tr>
<tr>
<td>इंदौर</td>
<td>अजय सिंह</td>
<td class=”inc”>INC</td>
<td>लीड</td>
<td>95000</td>
</tr>
<tr>
<td>कटनी</td>
<td>मोहन गुप्ता</td>
<td class=”bjp”>BJP</td>
<td>WIN</td>
<td>150000</td>
</tr>
</table>
</div>
<script>
// AUTO REFRESH हर 15 सेकंड
setTimeout(function(){
location.reload();
}, 15000);
</script>
</body>
</html>
