-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
154 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<!-- Try opening this file on your local computer in a web browser (Firefox, Chrome, etc). | ||
* On Windows, go to the browser and type control + o and browse to find this file to open it. | ||
* On Mac, go to the browser and type command + o and browse to find this file to open it. | ||
Look for the text in the <title> element in the tab above the browser search bar. Do you see it? | ||
--> | ||
<head> | ||
<!-- What's in the <head> element is a "meta" area not for display. | ||
It holds important information about the website's contents. | ||
The text inside the <title> element does show in the top tab of a web browser. | ||
The <head> is where we will include info about styling the site, too. --> | ||
<title>Starter HTML</title> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<!-- Here is a place where we can add a little styling code called CSS to this page. | ||
I used it to apply a background color to the body element. | ||
--> | ||
<link rel="stylesheet" type="text/css" href="style.css" /> | ||
</head> | ||
<body> | ||
<!-- CONTENT FOR DISPLAY. The <body> element holds the content we see in the display window on the web browser.--> | ||
<h1>Résumé</h1> | ||
<nav> | ||
<<<<<<< HEAD | ||
<a href="index.html">Home</a> | <a href="projects.html">Projects</a> | <a href="about.html">About</a> | <a href="gallery.html" | ||
>Gallery</a> | <a href="essay.html">Essay</a> | ||
======= | ||
<a href="index.html">Home</a> | <a href="about.html">About</a> | <a href="gallery.html" | ||
>Gallery</a> | ||
>>>>>>> 12f3e9ea137a11f6a9cf1e1d17a62921ace1a9ba | ||
</nav> | ||
<p>Education</p> | ||
<ul> | ||
<li>Graduating from Penn State Behrend in the Spring of 2025</li> | ||
<li>Bachelors in Digital Media, Arts, and Technology</li> | ||
</ul> | ||
<p>Activities</p> | ||
<ul> | ||
<li>Erie Youth Soccer Association for most of Elementary School</li> | ||
<li>Reyburn Sailing School for six years</li> | ||
</ul> | ||
<p>Job Experience</p> | ||
<ul> | ||
<li>TOPS Cashier</li> | ||
</ul> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<!-- Try opening this file on your local computer in a web browser (Firefox, Chrome, etc). | ||
* On Windows, go to the browser and type control + o and browse to find this file to open it. | ||
* On Mac, go to the browser and type command + o and browse to find this file to open it. | ||
Look for the text in the <title> element in the tab above the browser search bar. Do you see it? | ||
--> | ||
<head> | ||
<!-- What's in the <head> element is a "meta" area not for display. | ||
It holds important information about the website's contents. | ||
The text inside the <title> element does show in the top tab of a web browser. | ||
The <head> is where we will include info about styling the site, too. --> | ||
<title>Starter HTML</title> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<!-- Here is a place where we can add a little styling code called CSS to this page. | ||
I used it to apply a background color to the body element. | ||
--> | ||
<link rel="stylesheet" type="text/css" href="style.css" /> | ||
</head> | ||
<body> | ||
<!-- CONTENT FOR DISPLAY. The <body> element holds the content we see in the display window on the web browser.--> | ||
<<<<<<< HEAD | ||
<h1>Photos</h1> | ||
<nav> | ||
<a href="index.html">Home</a> | <a href="projects.html">Projects</a> | <a href="about.html">About</a> | <a href="gallery.html" | ||
>Gallery</a> | <a href="essay.html">Essay</a> | ||
</nav> | ||
<p>This is the page that displays my photos.</p> | ||
<figure class="one"> | ||
<img src="images/smallfall.jpeg" /> | ||
<figcaption>Glacier National Park (I think?)</figcaption> | ||
</figure> | ||
<figure class="two"> | ||
<img src="images/downroad.jpeg" /> | ||
<figcaption>Glacier National Park</figcaption> | ||
</figure> | ||
<figure class="three"> | ||
<img src="images/redroad.jpeg" /> | ||
<figcaption>Zion National Park</figcaption> | ||
</figure> | ||
======= | ||
<h1>Welcome to the Photo Gallery</h1> | ||
<nav> | ||
<a href="index.html">Home</a> | <a href="about.html">About</a> | <a href="gallery.html" | ||
>Gallery</a> | ||
</nav> | ||
<p>This is the page that displays my photos.</p> | ||
<figure> | ||
<img src="images/smallfall.jpeg" /> | ||
<figcaption>Glacier National Park (I think?)</figcaption> | ||
</figure> | ||
<figure> | ||
<img src="images/downroad.jpeg" /> | ||
<figcaption>Glacier National Park</figcaption> | ||
</figure> | ||
<figure> | ||
<img src="images/redroad.jpeg" /> | ||
<figcaption>Zion National Park</figcaption> | ||
</figure> | ||
>>>>>>> 12f3e9ea137a11f6a9cf1e1d17a62921ace1a9ba | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<!-- Try opening this file on your local computer in a web browser (Firefox, Chrome, etc). | ||
* On Windows, go to the browser and type control + o and browse to find this file to open it. | ||
* On Mac, go to the browser and type command + o and browse to find this file to open it. | ||
Look for the text in the <title> element in the tab above the browser search bar. Do you see it? | ||
--> | ||
<head> | ||
<!-- What's in the <head> element is a "meta" area not for display. | ||
It holds important information about the website's contents. | ||
The text inside the <title> element does show in the top tab of a web browser. | ||
The <head> is where we will include info about styling the site, too. --> | ||
<title>Starter HTML</title> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<!-- Here is a place where we can add a little styling code called CSS to this page. | ||
I used it to apply a background color to the body element. | ||
--> | ||
<link rel="stylesheet" type="text/css" href="style.css" /> | ||
</head> | ||
<body> | ||
<!-- CONTENT FOR DISPLAY. The <body> element holds the content we see in the display window on the web browser.--> | ||
<h1>Welcome to Railey's Website</h1> | ||
<nav> | ||
<<<<<<< HEAD | ||
<a href="index.html">Home</a> | <a href="projects.html">Projects</a> | <a href="about.html">About</a> | <a href="gallery.html" | ||
>Gallery</a> | <a href="essay.html">Essay</a> | ||
======= | ||
<a href="index.html">Home</a> | <a href="about.html">About</a> | <a href="gallery.html" | ||
>Gallery</a> | ||
>>>>>>> 12f3e9ea137a11f6a9cf1e1d17a62921ace1a9ba | ||
</nav> | ||
<p>I am currently a junior at Penn State Behrend. I love playing videogames and taking | ||
pictures of nature. I also recently started playing guitar. I have lived in Erie | ||
Pennsylvania my whole life, but have travelled across the country and visited many | ||
states.</p> | ||
<p><a href="https://github.com/brother-bread/brother-bread.github.io/tree/main/docs">Code View</a></p> | ||
<p>Here is a totally real picture of me.</p> | ||
<figure class="one"> | ||
<img src="images/rgosling.jpg"/> | ||
</figure> | ||
</body> | ||
</html> |