Began modernizing

This commit is contained in:
2021-09-24 14:34:40 -04:00
parent 2821b34dbd
commit d7d0ed8961
8 changed files with 75 additions and 35 deletions

View File

@@ -1,19 +1,50 @@
body{
background-image: url('https://i.pinimg.com/originals/d6/c3/ac/d6c3ac09021dbc0cda8ee27837d2c795.png')
}
h1{
background-color: aqua;
margin-bottom: 0px;
}
.navBar ul{
}
.navBar ul li{ .navBar ul li{
float: left; float: left;
display: block; display: block;
padding: 8px; padding: 0px;
background-color: #ad3737; background-color: rgb(156,49,45,.5);
border-top: 3px black solid;
border-bottom: 3px black solid;
border-right: 3px black solid;
}
.navBar ul li:first-child{
border-left: 3px black solid;
}
.navBar ul li:hover{
background-color: rgb(156,49,45,.8);
}
.navBar ul li a{
color: white;
padding: 40px;
line-height: 30px;
}
.navBar{
margin-bottom: 40px;
}
.foreground{
position: absolute;
margin-left: -10px;
padding-left: 10px;
width:110%;
background-color: rgb(156,49,45,.5);
}
img{
margin: 10px;
}
p{
color: #ffffff;
} }
a { a {
color: #4337ad; color: #a0a0a0a0;
text-decoration: none; text-decoration: none;
} }
a:visited {
color: #b3b3b3;
}
a:hover {
color: #535353;
}
a:active {
color: #000000;
}

View File

@@ -6,34 +6,38 @@
<link href="homepage.css" rel="stylesheet" type="text/css"> <link href="homepage.css" rel="stylesheet" type="text/css">
</head> </head>
<body> <body>
<h1>Andrew Simonson</h1>
<nav class="navBar"> <nav class="navBar">
<h1>Andrew Simonson</h1>
<ul> <ul>
<li><a href="index.html">Home</a></li> <li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li> <li><a href="resume/firstSemesterResume.pdf">Resume</a></li>
<li><a href="next.html">next</a></li>
</ul> </ul>
</nav> </nav>
<br /> <br/><br/>
<h2>A biography</h2> <div class='foreground'>
<p>I'm primarily an <strong>extremely</strong> forgetful person <br />
who, when productive, rewrites fate in favor of my own <h2>A biography</h2>
short-term interests, or rather, whatever half-assed mistake <p>I'm primarily an <strong>extremely</strong> forgetful person
results from the attempt.</p> who, when productive, rewrites fate in favor of my own
<p>When I'm not <del>losing my mind</del>wasting time, short-term interests, or rather, whatever half-assed mistake
you can find me building discord bots, playing chess, results from the attempt.</p>
or actually exercising, doing things like, idk, playing <p>When I'm not <del>losing my mind</del>wasting time,
racquetball or soccer.</p> you can find me building discord bots, playing chess,
<p>I'm a first year student at <strong>Rochester Institute of Technology</strong> or actually exercising, doing things like, idk, playing
in the <b>Computing Exploration</b> program. I'm from Hagerstown, racquetball or soccer.</p>
Maryland. <p>I'm a first year student at <strong>Rochester Institute of Technology</strong>
in the <b>Computing Exploration</b> program. I'm from Hagerstown,
Maryland.</p>
<a href="https://github.com/asimonson1125"> <a href="https://github.com/asimonson1125">
<img src="https://avatars.githubusercontent.com/u/58455242?v=4" <img src="https://avatars.githubusercontent.com/u/58455242?v=4"
alt="My github profile picture"> alt="My github profile picture">
<p>My Github</p> <p>My Github</p>
</a> </a>
<p>Instagram: <a href="https://www.instagram.com/an_a.simonson/">@an_a.simonson</a></p> <p>Instagram: <a href="https://www.instagram.com/an_a.simonson/">@an_a.simonson</a></p>
<p>RIT Email: abs1907@rit.edu</p> <p>RIT Email: abs1907@rit.edu</p>
<p>Informal Email: asimonson1125@gmail.com</p> <p>Informal Email: asimonson1125@gmail.com</p>
</div>
</body> </body>
</html> </html>

BIN
src/blackCircutBG.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 877 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 MiB

BIN
src/grey.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 664 KiB

BIN
src/smallMemory.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 547 KiB

BIN
src/space.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 765 KiB

5
test.java Normal file
View File

@@ -0,0 +1,5 @@
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}