Advertisement
Trainlover08

My first website “robotics.html”

May 13th, 2024
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>robotics</title>
  7.     <style>
  8.         /* CSS Styles */
  9.         /* Targeting the <h1> element */
  10.         h1, h2 {
  11.             /* Setting font size to 24 pixels */
  12.             font-size: 24px;
  13.             /* Setting font color to gray */
  14.             color: gray;
  15.            
  16.             text-align: center;
  17.         }
  18.         /* Style for buttons */
  19.         .button {
  20.             display: inline-block;
  21.             padding: 10px 20px;
  22.             background-color: #007bff;
  23.             color: white;
  24.             text-decoration: none;
  25.             border: none;
  26.             border-radius: 5px;
  27.             cursor: pointer;
  28.             transition: background-color 0.3s ease;
  29.         }
  30.         .button:hover {
  31.             background-color: #0056b3;
  32.         }
  33.     </style>
  34. </head>
  35. <body>
  36.     <!-- HTML Content -->
  37.     <h1>TIGER ROBOTICS [7686X "Phoenix"]</h1>
  38.    
  39.     <p>7686X "Phoenix" is a VEX VRC robotics team out of Harrisburg, South Dakota. The team has six members and a multitude of roles.</p>
  40.    
  41.     <h2>NOTEBOOKS AND DOCUMENTATION</h2>
  42. </body>
  43. </html>
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement