-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
26 lines (22 loc) · 1.42 KB
/
about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
// for error logging incase of fail
error_reporting(E_ALL);
ini_set('display_errors', 1);
// loads the dynamic header
$page_name="about";
require_once('inc/header.php');
?>
<body>
<!-- main content of the page -->
<div class="about">
<img src="images/face.jpg" alt="Jean Giraud Picture">
<div class="content">
<h1>JEAN GIRAUD</h1>
<p>Jean Giraud, better known by his pen name Moebius, remains one of the most influential cartoonists of all time whose signature blend of psychedelic fantasy and surrealism formed the aesthetic blueprint of modern sci-fi. Working in the Franco-Belgian style of bandes dessinées, popularised by The Adventures of Tintin and Asterix, Giraud’s seminal contributions ushered in a new age for comics and the visual arts generally.</p>
<p>After he died in 2012, Jean Giraud was mourned by the likes of Ridley Scott, Hayao Miyazaki, George Lucas and Stan Lee, whose respective careers had all been touched by the French artist’s work. From the latter half of the 20th century until today, Giraud’s signature style has become so widely imitated that signs of its influence are virtually impossible to distinguish from the norm. As Ridley Scott noted in 2010, “You see his influence everywhere, it runs through so much you can’t get away from it.”</p>
<a href="https://en.wikipedia.org/wiki/Jean_Giraud">More Info</a>
</div>
</div>
<?php include 'inc/footer.php'; ?>
</body>
</html>