67 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
| 
 | |
|     <title>About - Grayson Riffe</title>
 | |
|     <meta name="author" content="Grayson Riffe">
 | |
|     <meta name="description" content="Grayson Riffe's Portfolio Website">
 | |
|     <meta name="theme-color" content="#ff3535">
 | |
|     <meta name="og:image" content="/portrait.jpg">
 | |
| 
 | |
|     <link rel="icon" href="/favicon.png" type="image/png">
 | |
|     <link rel="stylesheet" href="/style.css">
 | |
| 
 | |
|     <script src="/transitions.js" defer></script>
 | |
| </head>
 | |
| <body style="--headercolor: var(--aboutheadercolor); --maincolor: #c41818aa; --articlecolor: #c0252599;">
 | |
|     <div class="background" style="--background: url(/about/aboutbackground.jpg);"></div>
 | |
| 
 | |
|     <header>
 | |
|         <div class="logo">
 | |
|             <img src="/logo.png" alt="Grayson Riffe">
 | |
|         </div>
 | |
|         <nav>
 | |
|             <div><a href="/">Home</a></div>
 | |
|             <div class="dropdown-container"><a href="#">Portfolio</a>
 | |
|                 <div class="dropdown">
 | |
|                     <div><a href="/nf/">Nothin' Fancy</a></div>
 | |
|                     <div><a href="/winchat/">WinChat</a></div>
 | |
|                     <div><a href="/mainspring/">Mainspring</a></div>
 | |
|                 </div>
 | |
|             </div>
 | |
|             <div><a href="/resume/" class="notransition">Resume</a></div>
 | |
|             <div class="selectedpage"><a href="#">About</a></div>
 | |
|         </nav>
 | |
|     </header>
 | |
| 
 | |
|     <main>
 | |
|         <article>
 | |
|             <h1>About</h1>
 | |
|             <div class="portrait">
 | |
|                 <img src="portrait.jpg" alt="Portrait">
 | |
|             </div>
 | |
|             <p>
 | |
|                 I'm from Kennedale, a small suburb in the DFW area of Texas. It's here where I grew up and found my home in engineering. In high school, I played trumpet in our (UIL State finalist) marching band. In 2022, I graduated and said goodbye to my hometown, and now I'm in College Station studying what I love while doing some food serving work.
 | |
| 
 | |
|                 My favorite music genre is alternative rock/metal, and a shortlist of my favorite bands are Starset, Red, and My Chemical Romance! As a textbook 21st century young adult, my other hobbies include playing video games such as Elden Ring, reading Wikipedia pages, eating Chick-fil-A, and riding my bike.
 | |
|             </p>
 | |
|             <div class="space"></div>
 | |
|             <h2>Contact</h2>
 | |
|             <p>
 | |
|                 If you wish to get in touch with me, the best way to do that would be to either send an me email or send a SMS to my number. Either way, I should be able to respond within 24 hours or so.
 | |
|             </p>
 | |
|             <div class="space"></div>
 | |
|             <ul class="contact">
 | |
|                 <li>Email - grayson@graysonriffe.com</td>
 | |
|                 <li>Phone Number - 817-687-8255</td>
 | |
|             </ul>
 | |
|         </article>
 | |
|         <footer>
 | |
|             Copyright 2025 Grayson Riffe
 | |
|         </footer>
 | |
|     </main>
 | |
| </body>
 | |
| </html> |