aboutme.astro 947 B

123456789101112131415161718192021222324252627282930
  1. <div
  2. id="aboutme"
  3. class="window"
  4. style="width: 70%; height: 45%; position: absolute; left: 15%; top: 22%; display: none;"
  5. >
  6. <div id="aboutmeheader" class="title-bar">
  7. <div class="title-bar-text">About Me</div>
  8. <div class="title-bar-controls">
  9. <button class="close" aria-label="Minimize"></button>
  10. <button class="close" aria-label="Close"></button>
  11. </div>
  12. </div>
  13. <div class="window-body">
  14. <div class="field-row-stacked">
  15. <!-- prettier-ignore -->
  16. <textarea
  17. readonly
  18. id="text20"
  19. style="font-size: 25px; resize: none; padding: 10px; height: 37vh;"
  20. >I'm Simon, a self taught programmer
  21. My programming skills include proficiency in Javascript, Typescript, Html, CSS
  22. My Web Framework knowlage includes Sveltekit, React, Astro
  23. Although not entirely proficient, I also write in Python and Golang from time to time
  24. </textarea>
  25. </div>
  26. </div>
  27. </div>