Postingan lainnya
Kelas Premium!
Belajar bikin website dari nol sekarang
Gunakan kupon "lebihcepat" untuk diskon 25%!
Css yang sy buat kok tidak berpengaruh ke hasil single ya #judul_single
<?php
require_once "core/init.php";
require_once "view/header.php";
$error = '';
$id = $_GET['id'];
if(isset($_GET['id'])) {
$article = tampilkan_per_id($id);
while($row = mysqli_fetch_assoc($article)){
$judul_awal = $row['judul'];
$konten_awal = $row['isi'];
$tag_awal = $row['tag'];
}
}
?>
<p id="judul_single">
<?=$judul_awal; ?>
</p>
<p id="isi_single">
<?=$konten_awal; ?>
</p>
<p id="tag_single">
<?=$tag_awal; ?>
</p>
<?php
require_once "view/footer.php";
?>
0
2 Jawaban:
<pre>#judul_single{ font-size: 25px ; font-weight: bold ; }</pre>
0
<div>di simpan dulu sebagai file php misalnya style.php<br><br></div><pre><style> #judul_single{ font-size: 25px ; font-weight: bold ; } </style></pre><div>kemudian di panggil dari halaman html dengan 'include' atau 'require once'</div><pre><html> <head> <?php include 'style.php'; ?> </head> <body>
</body> </html></pre>
0