My personal website. It is free and liberated from social media.

Removed br tags, using width prop

+51 -27
+47 -26
index.html
··· 8 8 <title>Portfolio Website</title> 9 9 </head> 10 10 <body> 11 - <header> 12 - Hello! Welcome to my portfolio site. Here I catalog my work and socials. 13 - Head to the bottom for my socials! 11 + <header style="width: 50%"> 12 + Hello! Welcome to my portfolio site. I try my best to catalog things about 13 + myself. At the page footer, you will find my socials and contact 14 + information! 14 15 </header> 15 16 16 17 <main> 17 - <!-- 18 - This is for the main content of our website. 19 - --> 20 18 <h1>Portfolio Website</h1> 19 + <!-- whoami --> 21 20 <section> 22 21 <h2>whoami</h2> 23 22 <p> 24 - I'm Demetrius Semanko; an undergraduate Computer Science student.<br /> 25 - I help to run a few clubs at my University. 23 + My name is Demetrius S and I am a 23-year-old college student pursuing 24 + a Bachelor of Science in Computer Science. Of course, a computer 25 + science degree isn't all that I am!. 26 26 </p> 27 - <ul> 28 - <li>Cybersecurity Club, Vice President</li> 29 - <li>Computer Science Club, Treasurer</li> 30 - </ul> 31 27 </section> 28 + <!-- What do I do? --> 32 29 <section> 33 - <h2>What have I done? (not dramatically)</h2> 34 - <p>I work and I am a student. It's complicated.</p> 35 - <ul> 36 - <li> 37 - I work at my school's Help Desk - helping the University community 38 - </li> 39 - </ul> 30 + <h2>What do I do?</h2> 31 + <section> 32 + <p> 33 + Professionally, I work for my University's IT Help Desk. I like my 34 + job, the people I work with, and the problems I solve. In the most 35 + likely case, I see myself working in IT rather than SWE, but I do 36 + still pursue the world of SWE as much as I can. I participate in 37 + some clubs at University, and I enjoy quite a few hobbies outside of 38 + my extracurriculars. 39 + </p> 40 + </section> 41 + <h3>University Clubs</h3> 42 + <section> 43 + <h4>Cybersecurity Club, Vice President</h4> 44 + <p> 45 + So far, my role entails planning and facilitating meetings. The task 46 + I enjoy most, however, is to listen and learn. Our club President 47 + has a lot of informative things to teach us! 48 + </p> 49 + </section> 50 + <h4>Computer Science Club, Treasurer</h4> 51 + <section> 52 + <p> 53 + I took on this role recently due to a vacancy. I've lots to learn. 54 + My friend, who acts as Treasurer for other clubs, is teaching me. 55 + </p> 56 + </section> 57 + <h3>Hobbies</h3> 58 + <section> 59 + <h4>Music: Curating and Listening</h4> 60 + <p>While I don't make music, I certainly enjoy finding new music</p> 61 + </section> 40 62 </section> 63 + <!-- Projects --> 41 64 <section> 42 65 <h2>Projects</h2> 43 66 <p> 44 - I have aspirations and project ideas; <br /> 45 - when I achieve them, I'll put them here. 67 + I have aspirations and project ideas; when I achieve them, I'll put 68 + them here. 46 69 </p> 47 70 <ul> 48 71 <li>This website!!!🤠</li> 49 - <li>A Blackjack game made with Java ☹️</li> 72 + <li>A Blackjack game made with Java☕</li> 50 73 </ul> 51 74 </section> 75 + <!-- Friends --> 52 76 <section> 53 77 <h2>Friends!</h2> 54 - <p> 55 - I have friends! 😲<br /> 56 - Say, "Hi"! 57 - </p> 78 + <p>I have friends! 😲 Say, "Hi"!</p> 58 79 <ul> 59 80 <li>The Cow</li> 60 81 <li>The Spoon</li>
+4 -1
style.css
··· 3 3 width: max-content; 4 4 padding: 5px 10px; 5 5 border-radius: 10px; 6 - } 6 + } 7 + p { 8 + width: 50%; 9 + }