skip to Main Content

Html – I am trying to use Box-Shadow property it is working fine but when i use the display as flex it will not appear

HTML CODE --- <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Gallary Project</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="wrapper"> <div class="container"> <h1>My gallary</h1> <div class="gallary"> <figure class="card"> <img src="ig/assets/image1.jpg" alt=""> <figcaption>Image1</figcaption> </figure> <figure class="card"> <img src="ig/assets/image2.jpeg"…

VIEW QUESTION

Mysql – Is this good way to use php in html page

<?php require_once('dbcon.php'); $query = "select * from indexpage"; $query2= "SELECT * FROM `blogintro` ORDER BY `id` DESC;"; $query3= "SELECT * FROM `indexjob` ORDER BY `id` DESC;"; $query4= "SELECT * FROM `dsintro` ORDER BY `id` DESC;"; $result = mysqli_query($con,$query); $result2 =…

VIEW QUESTION
Back To Top
Search