��<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <!--<meta name="viewport" content="width=device-width, initial-scale=1">--> <title>GraceHomepage</title> <script>effectson = true;</script> <script src="../Scripts/starCursor2.js" type="text/javascript" charset="UTF-8" ></script> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap" rel="stylesheet"> <style> html{ cursor: url('../Assets/Cursors/Layer 2.png'), pointer; } body{ background-color: #000000; font-family: Consolas, Lucida Console, JetBrains Mono, system-ui; color: #00e600; /*cursor: url('Layer 1.png'), pointer; height: 100%;*/ opacity: 0; transition: opacity 1s; overscroll-behavior: none; } .navbar{ overflow: hidden; background-color: #000000; } .navbar a{ float: left; color: #00e600; text-align: center; padding: 10px 13px; font-size: 20px; } .header{ margin-left: 26%; margin-right: 26%; text-align: center; background: #000000; color: #00e600; } .header h1{ font-size: 100px; } .aboutMe { margin-left: 26%; margin-right: 26%; cursor: url('../Assets/Cursors/Layer 2.png'), pointer; text-align: left; position: absolute; } .aboutMe a1{ font-size: 40px; text-align: left; } .aboutMe a2{ font-size: 20px; text-align: left; overflow: hidden; } .aboutMe a3{ font-size: 20px; text-align: left; overflow: hidden; } .button1 { cursor: url('../Assets/Cursors/Layer 2.png'), pointer; background-color: #000000; top: 5%; left: 13px; position: absolute; font-family: Consolas, Lucida Console, system-ui; font-size: 17px; color: #00e600; } a{ color: #00e600; } </style> </head> <body onload="document.body.style.opacity='1'"> <div class="navbar"> <a href='GraceHomepage.html'>Home</a> <a href='Blog.html'>Blog</a> <a href='Photos.html'>Photos</a> </div> <div class="header"> <h1>Welcome To My Website!</h1> </div> <button onclick="textChange()" id="starToggleButton" value="turnOff" class="button1">Remove the star trail please :(</button> <script> function textChange(){ var button = document.getElementById("starToggleButton"); if (button.value==="turnOff"){ button.value="turnOn"; button.innerHTML="Bring the star trail back :)"; } else{ button.value="turnOff"; button.innerHTML="Remove the star trail please :(" } } </script> <div class="aboutMe"> <img src="../Assets/PicOfMe.png" width="512" height="463" style="float: left; margin-right: 15px"> <a1> <u>My name is Grace Gillam</u> </a1> <a2> <p> I am a senior at Virginia Commonwealth University, studying computer science and on track to graduate with a bachelor's degree in May 2025. I have a lot of experience with full-stack development and am looking for a career in that field, although I am also loving my cryptography class this semester and would be happy to break into cyber security. This past summer, I interned at Estes Express Lines as a full-stack web developer, and am now currently working with one of my professors in his lab at VCU, where I am working on development for an app with both a web and iOS client. In a few months, I will be gaining some visionOS and Unity experience, as we will be using the Apple Vision Pro to enhance telecommunications between doctors and specialists. We will also be exploring the use of virtual reality in training new surgeons. I will be doing my senior capstone project this year, in which I will be working with the DoD on algorithm development for sensor data fusion, fine-tuning their threat detection capabilities. In my free time, you can find me rock climbing, hanging out with my friends, working on various art/construction projects, playing video games, or studying. You can dive deeper into my work experience below! </p> </a2> <a3> <p> <a href="https://www.linkedin.com/in/grace-gillam/">See my LinkedIn here</a></br> <a href="https://github.com/gillamga">See my Github here</a></br> <a href="../Assets/Grace Gillam Resume 2024.pdf" download>Click here to download a copy of my resume</a> </p> </a3> <a2> <p> There's not much to my website for now, but I am currently working on a competitive sudoku app and a saltwater aquarium cohesion planning app, the latter of which will be added by the end of this semester, and the former of which is trapped in development limbo. If you're thinking about making a saltwater aquarium of your own, feel free to return and create an account when all functionality is implemented! </p> </a2> </div> <!-- <div id="clientLoc" style="color:#000000"></div> <div id="offsetLoc" style="color:#000000"></div> <div id="pageLoc" style="color:#000000"></div> <div id="screenLoc" style="color:#000000"></div> --> </body> </html>