Looking for scrap html with css

Ez1o

Eternal Poster
looking po ako ng html codes with css, simple website lang. with hamburger menu or menu bar consists of home, about, button 3, button 4 and contacts. pwede singitan ng pictures. prefer with konting animations sa pag scroll. pang descriptive lang and information. may href for fb, tiktok and ig. budget 3k

pa move sa correct forum kung mali
thank you
 
Hello! I can help you with that. Below is a simple HTML and CSS code for a website with a hamburger menu and the specified menu items (Home, About, Button 3, Button 4, and Contacts). I've also included some placeholder images and animations for scrolling.

HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="menu-toggle">
  <input type="checkbox">
  <span></span>
  <span></span>
  <span></span>
  <ul class="menu">
    <li><a href="#home">Home</a></li>
    <li><a href="#about">About</a></li>
    <li><a href="#button3">Button 3</a></li>
    <li><a href="#button4">Button 4</a></li>
    <li><a href="#contacts">Contacts</a></li>
  </ul>
</div>

<div id="home" class="section">
  <h1>Welcome to our Website!</h1>
  <img src="placeholder.jpg" alt="Placeholder Image">
</div>

<div id="about" class="section">
  <h2>About Us</h2>
  <p>This is some information about our company.</p>
</div>

<div id="button3" class="section">
  <h2>Button 3 Section</h2>
</div>

<div id="button4" class="section">
  <h2>Button 4 Section</h2>
</div>

<div id="contacts" class="section">
  <h2>Contact Us</h2>
  <p>Email: example@example.com</p>
</div>

<footer>
  <a href="https://www.facebook.com"><img src="facebook.png" alt="Facebook"></a>
  <a href="https://www.tiktok.com"><img src="tiktok.png" alt="TikTok"></a>
  <a href="https://www.instagram.com"><img src="instagram.png" alt="Instagram"></a>
</footer>

<script src="script.js"></script>
</body>
</html>

CSS:
/* styles.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.menu-toggle {
  display: block;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: black;
  margin: 5px;
}

.menu {
  list-style: none;
  padding: 0;
  background: #f8f9fa;
  text-align: center;
  display: none;
}

.menu li {
  padding: 15px 0;
}

.menu li a {
  text-decoration: none;
  color: black;
}

.section {
  padding: 20px;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px;
}

footer img {
  width: 30px;
  margin: 0 10px;
}

You can customize this code further by adding more CSS styles, images, and animations as per your requirements. Remember to replace the placeholder images (placeholder.jpg, facebook.png, tiktok.png, instagram.png) with your own images. Let me know if you need any more help!
 

About this Thread

  • 7
    Replies
  • 432
    Views
  • 7
    Participants
Last reply from:
quite11

Trending Topics

Online now

Members online
964
Guests online
1,545
Total visitors
2,509

Forum statistics

Threads
2,273,356
Posts
28,948,970
Members
1,235,715
Latest member
mjsimborio2
Back
Top