66 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.5 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>WinChat - Grayson Riffe</title>
 | |
|     <meta name="author" content="Grayson Riffe">
 | |
|     <meta name="description" content="A simple Windows chat app">
 | |
|     <meta name="theme-color" content="#21b9ff">
 | |
|     <meta name="og:image" content="/winchat/wclogo.png">
 | |
| 
 | |
|     <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(--wcheadercolor); --maincolor: #00d9ffaa; --articlecolor: #21f0ff99;">
 | |
|     <div class="background" style="--background: url('/winchat/wcbackground.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 class="selectedpage"><a href="#">WinChat</a></div>
 | |
|                     <div><a href="/mainspring/">Mainspring</a></div>
 | |
|                 </div>
 | |
|             </div>
 | |
|             <div><a href="/resume/" class="notransition">Resume</a></div>
 | |
|             <div><a href="/about/">About</a></div>
 | |
|         </nav>
 | |
|     </header>
 | |
| 
 | |
|     <main>
 | |
|         <div class="centeredimage">
 | |
|             <img src="wclogo.png" alt="WinChat Logo">
 | |
|         </div>
 | |
|         <article>
 | |
|             <h1>WinChat</h1>
 | |
|             <p>
 | |
|                 WinChat is a simple instant messaging app.
 | |
| 
 | |
|             </p>
 | |
|             <div class="mainimage">
 | |
|                 <img src="screenshot.png" alt="WinChat screenshot">
 | |
|             </div>
 | |
|             <p>
 | |
|                 I started this project to get a grasp of the network programming I would need to know if I were to add multiplayer support to Nothin' Fancy. The application has few features, but everything is done at a low level, only using old Win32 APIs to get the job done.
 | |
| 
 | |
|                 You can download the current version (1.0.0) <a href="WinChat.zip" class="notransition">here</a>.
 | |
| 
 | |
|                 The source can be found <a href="https://git.graysonriffe.com/grayson/WinChat" class="notransition">here</a>.
 | |
|             </p>
 | |
|         </article>
 | |
|         <footer>
 | |
|             Copyright 2025 Grayson Riffe
 | |
|         </footer>
 | |
|     </main>
 | |
| </body>
 | |
| </html> |