Advertisement
Trainlover08

My first website “index.html”

May 13th, 2024 (edited)
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.06 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>home</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>ABOUT ME</h1>
  38.     <p>I am a student in an american high school. This is my second year in high school, and I enjoy a number of things outsdie of school. Below are some projects that I have made both for professional use, personal use, and use in school clubs.</p>
  39.     <h2>PROJECTS</h2>
  40.     <p>Some of my personal projects include: </p>
  41.     <!-- Button to go to another HTML page -->
  42.     <a href="models.html" class="button">HO Scale Model Railroad</a>
  43.     <a href="rail_general.html" class="button">Rail Preservation</a>
  44.     <p>My Professional Projects: </p>
  45.     <a href="temp_sensing_readme.html" class="button">Remote Locomotive Monotering</a>
  46.     <a href="code_projects.html" class="button">Software</a>
  47.     <p>Robotics / School Projects: </p>
  48.     <a href="robotics_home.html" class="button">Robotics Homepage</a>
  49.    
  50.     </p>Below is a copy of my resume for potential employers or other curious people: </p>
  51.     <a href="resume.pdf" class="button">Resume</a>
  52.    
  53.     <p>Where can I be contacted?</p>
  54.     <p>Email: master@ianfsmith.net</p>
  55.     <p>Phone: +1 (605) 728 - 5166</p>
  56. </body>
  57. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement