Advertisement
DOGGYWOOF

Untitled

Jan 9th, 2025 (edited)
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. <div bgColor="black">
  2. <text x="10" y="2" color="yellow" content="Welcome to the Interactive Website!" />
  3. <br />
  4. <text x="5" y="4" color="white" content="Explore the features below:" />
  5. <br />
  6.  
  7. <!-- Navigation Section -->
  8. <div bgColor="blue">
  9. <text x="5" y="6" color="white" content="Navigation" />
  10. <br />
  11. <button x="5" y="8" label="Home" action="homeScript" />
  12. <button x="15" y="8" label="About" action="aboutScript" />
  13. <button x="25" y="8" label="Contact" action="contactScript" />
  14. <br />
  15. </div>
  16.  
  17. <br />
  18.  
  19. <!-- Input Section -->
  20. <div bgColor="gray">
  21. <text x="5" y="11" color="yellow" content="User Input Section" />
  22. <br />
  23. <input x="5" y="13" placeholder="Enter your name" />
  24. <br />
  25. <input x="5" y="15" placeholder="Enter your email" />
  26. <br />
  27. <button x="5" y="17" label="Submit" action="submitScript" />
  28. <br />
  29. </div>
  30.  
  31. <br />
  32.  
  33. <!-- Information Section -->
  34. <div bgColor="green">
  35. <text x="5" y="20" color="white" content="Information Panel" />
  36. <br />
  37. <text x="5" y="22" color="white" content="This website is powered by CC Tweaked and Lua!" />
  38. <br />
  39. <text x="5" y="23" color="white" content="Built for creativity and interaction!" />
  40. <br />
  41. </div>
  42.  
  43. <br />
  44.  
  45. <!-- Loop Section -->
  46. <div bgColor="red">
  47. <text x="5" y="26" color="white" content="Loop Demo Section" />
  48. <br />
  49. <button x="5" y="28" label="Start Loop" action="startLoopScript" />
  50. <button x="15" y="28" label="Stop Loop" action="stopLoopScript" />
  51. <br />
  52. </div>
  53.  
  54. <br />
  55.  
  56. <!-- Footer -->
  57. <div bgColor="black">
  58. <text x="5" y="31" color="gray" content="© 2025 Interactive Website - CC Tweaked" />
  59. </div>
  60. </div>
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement