rmcg.dev/projects/freeCodeCamp/responsive-web-design-projects/Project1-TributePage/index.html

40 lines
2.7 KiB
HTML

<link rel="stylesheet" type="text/css" href="tribute.css" />
<!--
Hello Camper!
For now, the test suite only works in Chrome! Please read the README below in the JS Editor before beginning. Feel free to delete this message once you have read it. Good luck and Happy Coding!
- The freeCodeCamp Team
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>John Williams Tribute Page</title>
</head> <body>
<div id="main">
<h1 id="title">John Williams</h1>
<div id="img-div">
<img id="image" src="https://upload.wikimedia.org/wikipedia/commons/b/b8/John_Williams_tux.jpg" alt="picture of John Williams"></img>
<h4 id="img-caption">John Williams at Avery Fisher Hall in 2007</h4>
</div>
<p id="tribute-info">
<strong>John Towner Williams</strong> (born February 8, 1932) is an American composer, conductor, and pianist. Widely regarded as one of the greatest film composers of all time, he has composed some of the most popular, recognizable, and critically acclaimed film scores in cinematic history in a career spanning over six decades. Williams has won 25 Grammy Awards, seven British Academy Film Awards, five Academy Awards, and four Golden Globe Awards.
<br><br>
Williams has composed for many critically acclaimed and popular movies, including the Star Wars saga, Schindler's List, Close Encounters of the Third Kind, Superman, E.T. the Extra-Terrestrial, the Indiana Jones series, the first two Home Alone films, the first two Jaws films, the first two Jurassic Park films, Hook, and the first three Harry Potter films.[4] Williams has also composed numerous classical concertos and other works for orchestral ensembles and solo instruments. He served as the Boston Pops's principal conductor from 1980 to 1993 and is its laureate conductor.[5] He has been associated with director Steven Spielberg since 1974, composing music for all but five of his feature films. Other works by Williams include theme music for the 1984 Summer Olympic Games, NBC Sunday Night Football, "The Mission" theme used by NBC News and Seven News in Australia, the television series Lost in Space and Land of the Giants, and the incidental music for the first season of Gilligan's Island.
</p>
<br>
<p id="tribute-link-area">
You can learn more about John Williams and the many movies he has scored on
<a href="https://en.wikipedia.org/wiki/John_Williams" id="tribute-link" target="_blank">Wikipedia</a>
.
</p>
</div>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</html>