use absolute links instead of relative
This commit is contained in:
parent
b04d962a7f
commit
7acbd7d79a
|
@ -4,8 +4,8 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<title>musically emma</title>
|
||||
<link rel="icon" type="image/x-icon" href="../../img/site/assets/favicon.ico">
|
||||
<link rel="stylesheet" href="../../style/style.css"">
|
||||
<link rel="icon" type="image/x-icon" href="/img/site/assets/favicon.ico">
|
||||
<link rel="stylesheet" href="/style/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
|
@ -4,13 +4,13 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<title>photographically emma</title>
|
||||
<link rel="icon" type="image/x-icon" href="../img/site/assets/favicon.ico">
|
||||
<link rel="stylesheet" href="../style/style.css">
|
||||
<link rel="icon" type="image/x-icon" href="/img/site/assets/favicon.ico">
|
||||
<link rel="stylesheet" href="/style/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include "../includes/header.php" ?>
|
||||
<?php include "../includes/nav.php" ?>
|
||||
<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'); ?>
|
||||
<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/includes/header.php'); ?>
|
||||
<main>
|
||||
<section>
|
||||
<h1>photographically emma</h1>
|
||||
|
@ -27,18 +27,18 @@
|
|||
<h3 class="photo-gallery-header">photo gallery</h3>
|
||||
<?php include "../includes/enlarge-image.php" ?>
|
||||
<figure class="photography-gallery">
|
||||
<img class="enlarge" src="../img/life/photography/flower.jpg" alt="a pink rose captured on a digital slr. the color is vibrant, the flower is the star of the portrait" height="300" width="500">
|
||||
<img class="enlarge" src="/img/life/photography/flower.jpg" alt="a pink rose captured on a digital slr. the color is vibrant, the flower is the star of the portrait" height="300" width="500">
|
||||
|
||||
<img class="enlarge" src="../img/life/photography/flower-two.jpg" alt="a beautiful white flower is the center of the photograph. it shows of beautiful parts of itself that are essential for polinators such as bees and butterflies" height="300" width="500">
|
||||
<img class="enlarge" src="/img/life/photography/flower-two.jpg" alt="a beautiful white flower is the center of the photograph. it shows of beautiful parts of itself that are essential for polinators such as bees and butterflies" height="300" width="500">
|
||||
|
||||
<img class="enlarge" src="../img/life/photography/pink-flower.jpg" alt="a vibrant mix of deep and bright pink make up this photo of multiple small flowers. special attention has been made to focus on them by blurring their background, making them front and center for this
|
||||
<img class="enlarge" src="/img/life/photography/pink-flower.jpg" alt="a vibrant mix of deep and bright pink make up this photo of multiple small flowers. special attention has been made to focus on them by blurring their background, making them front and center for this
|
||||
picture" height="300" width="500">
|
||||
|
||||
<img class="enlarge" src="../img/life/photography/orange-flower.jpg" alt="a flower orange like a warm sunset is captured on a 35mm film print. the flower has a deep inner center with pedals extending up and outwards. in the deep center part, stems extend that help polinators do their job and collect pollen" height="300" width="500">
|
||||
<img class="enlarge" src="/img/life/photography/orange-flower.jpg" alt="a flower orange like a warm sunset is captured on a 35mm film print. the flower has a deep inner center with pedals extending up and outwards. in the deep center part, stems extend that help polinators do their job and collect pollen" height="300" width="500">
|
||||
|
||||
<img class="enlarge" src="../img/life/photography/parakeet-bw.jpg" alt="a photo of a yellow parakeet caputre on black and white film. the bird is in an enclosure, and the crooked tilt of the head and beak suggest she may be curious about the camera that is taking a picture of her" height="300" width="500">
|
||||
<img class="enlarge" src="/img/life/photography/parakeet-bw.jpg" alt="a photo of a yellow parakeet caputre on black and white film. the bird is in an enclosure, and the crooked tilt of the head and beak suggest she may be curious about the camera that is taking a picture of her" height="300" width="500">
|
||||
|
||||
<img class="enlarge" src="../img/life/photography/whiskers-bw-three.jpg" alt="a photo of a white dwarf rabbit captured on black and white film. the rabbit is sitting under a chair, and surveys his surroundings, as he is outside and is taking in much about the world around him" height="300" width="500">
|
||||
<img class="enlarge" src="/img/life/photography/whiskers-bw-three.jpg" alt="a photo of a white dwarf rabbit captured on black and white film. the rabbit is sitting under a chair, and surveys his surroundings, as he is outside and is taking in much about the world around him" height="300" width="500">
|
||||
|
||||
<figcaption>
|
||||
various photos captured on digital and 35mm film. the photos captured on 35mm film no longer have their negative with them and are photos of the print. this leaves an odd effect on the photos as the camera captures the glossieness of the print. i like it enough that i will put these here for you to enjoy. i will look into properly scanning the prints in the future
|
||||
|
@ -51,7 +51,7 @@
|
|||
</p>
|
||||
</section>
|
||||
</main>
|
||||
<script src="../script/image-enlarger.js" defer></script>
|
||||
<?php include "../includes/footer.php" ?>
|
||||
<script src="/script/image-enlarger.js" defer></script>
|
||||
<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue