Skip to content

Commit

Permalink
Corrected file path for images in html file
Browse files Browse the repository at this point in the history
  • Loading branch information
RowNorseRow committed Feb 27, 2018
1 parent 2854cff commit 52ac47f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--Add a favicon to the tab at the top of the users browser-->
<link rel="shortcut icon" href="C:\Users\Aaron's\Documents\portfolio-website\images\favicon.ico">
<link rel="shortcut icon" href="images\favicon.ico">
<title>My Portfolio</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="main.css">
Expand All @@ -14,7 +14,7 @@
<body>
<header class="header">
<div class="header__inner">
<img class="header__logo" src="C:\Users\Aaron's\Documents\portfolio-website\images\profile_pic.jpg" alt="profile pic">
<img class="header__logo" src="images\profile_pic.jpg" alt="profile pic">
<h1 class="header__title">ALLEN ELLIS
<p class="second__title">WEB-DEV KUNG-FU</p>
</h1>
Expand All @@ -28,21 +28,21 @@ <h1 class="projects">Featured Work</h1>
<div class="project_image">
<a href="https://rownorserow.github.io/arkansas_webpage/Start/" target ="_blank">
<!--Using target="_blank" allows the link to open in either another tab or browser-->
<img class="project_pic" src="C:\Users\Aaron's\Documents\portfolio-website\images\hog_stop.png" alt="the hog stop">
<img class="project_pic" src="images\hog_stop.png" alt="the hog stop">
</a>
<h2>The Hog Stop</h2>
<p class="link">https://github.com/RowNorseRow/arkansas_webpage</p>
</div>
<div class="project_image">
<a href="https://rownorserow.github.io/best_movies/" target="_blank">
<img class="project_pic" src="C:\Users\Aaron's\Documents\portfolio-website\images\best_movies.png" alt="the hog stop">
<img class="project_pic" src="images\best_movies.png" alt="the hog stop">
</a>
<h2>Favorite Movies</h2>
<p class="link">https://github.com/RowNorseRow/best_movies</p>
</div>
<div class="project_image">
<a href="https://rownorserow.github.io/responsive_webpage/Start/" target="_blank">
<img class="project_pic" src="C:\Users\Aaron's\Documents\portfolio-website\images\hometown.png">
<img class="project_pic" src="images\hometown.png">
</a>
<h2>Hometown News</h2>
<p class="link">https://github.com/RowNorseRow/responsive_webpage</p>
Expand Down

0 comments on commit 52ac47f

Please sign in to comment.