Life Skill

SourceCode Company Button dan POP UP

HTML   <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <link rel=”stylesheet” href=”styles.css”> <title>Gradient Button with Pop Up</title> </head> <body> <button class=”gradient-button” id=”popupButton”>Click me</button> <div class=”popup” id=”myPopup”> <span class=”close” onclick=”closePopup()”>&times;</span> <p>This is a Pop Up!</p> </div> <script src=”app.js”></script> </body> </html>   Baca juga tentang sourcecode Web Banner   CSS   body { …

SourceCode Company Button dan POP UP Read More »

SourceCode Website Banner

<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <link rel=”stylesheet” href=”https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css”> <link rel=”stylesheet” href=”styles.css”> <title>Bootstrap Slider</title> </head> <body> <div id=”bootstrap-slider” class=”carousel slide” data-ride=”carousel”> <div class=”carousel-inner”> <div class=”carousel-item active”> <img src=”image1.jpg” class=”d-block w-100″ alt=”Image 1″> </div> <div class=”carousel-item”> <img src=”image2.jpg” class=”d-block w-100″ alt=”Image 2″> </div> <div class=”carousel-item”> <img src=”image3.jpg” class=”d-block w-100″ alt=”Image 3″> …

SourceCode Website Banner Read More »

SourceCode Company Profile

<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <style> body { font-family: ‘Arial’, sans-serif; margin: 0; padding: 0; box-sizing: border-box; } header { background-color: #333; color: #fff; text-align: center; padding: 20px; } .about-us, .services, .contact { padding: 40px; text-align: center; } .about-us { background-color: #f4f4f4; } .services { background-color: #e0e0e0; } .contact …

SourceCode Company Profile Read More »

Scroll to Top