forked from J-JD/MDN-3-HTML-MDN_splash_page_start
-
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
0 parents
commit 355ca49
Showing
8 changed files
with
338 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,7 @@ | ||
# Mozilla splash page | ||
|
||
Exercise from [MDN Web Docs moz://a](https://developer.mozilla.org/en-US/) | ||
|
||
Too see the description, please click on this link: <https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Mozilla_splash_page> | ||
|
||
Thanks in advance and have a nice day! |
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,156 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<title>Mozilla splash page</title> | ||
<link | ||
href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" | ||
rel="stylesheet" | ||
type="text/css" | ||
/> | ||
<style> | ||
/* header and body setup */ | ||
|
||
html { | ||
font-family: "Open Sans", sans-serif; | ||
background: url(pattern.png); | ||
} | ||
|
||
body { | ||
width: 100%; | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
background-color: white; | ||
position: relative; | ||
} | ||
|
||
/* Header styling */ | ||
|
||
header { | ||
height: 150px; | ||
} | ||
|
||
header img { | ||
width: 100px; | ||
position: absolute; | ||
right: 32.5px; | ||
top: 32.5px; | ||
} | ||
|
||
h1 { | ||
font-size: 50px; | ||
line-height: 140px; | ||
margin: 0 0 0 32.5px; | ||
} | ||
|
||
/* main section and video styling */ | ||
|
||
main { | ||
background: #ccc; | ||
} | ||
|
||
article { | ||
padding: 20px; | ||
} | ||
|
||
h2 { | ||
margin-top: 0; | ||
} | ||
|
||
p { | ||
line-height: 2; | ||
} | ||
|
||
iframe { | ||
float: left; | ||
margin: 0 20px 20px 0; | ||
max-width: 100%; | ||
} | ||
|
||
/* further info links */ | ||
|
||
.further-info { | ||
clear: left; | ||
padding: 40px 0; | ||
background: #c13832; | ||
box-shadow: inset 0 3px 2px rgba(0, 0, 0, 0.5), | ||
inset 0 -3px 2px rgba(0, 0, 0, 0.5); | ||
} | ||
|
||
.further-info a { | ||
width: 25%; | ||
display: block; | ||
float: left; | ||
} | ||
|
||
.further-info img { | ||
max-width: 100%; | ||
} | ||
|
||
.clearfix { | ||
clear: both; | ||
} | ||
|
||
/* Red panda image */ | ||
|
||
.red-panda img { | ||
display: block; | ||
max-width: 100%; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Mozilla</h1> | ||
<!-- insert <img> element, link to the small | ||
version of the Firefox logo --> | ||
</header> | ||
|
||
<main> | ||
<article> | ||
<!-- insert iframe from youtube --> | ||
|
||
<h2>Rocking the free web</h2> | ||
|
||
<p> | ||
Mozilla are a global community of technologists, thinkers, and | ||
builders, working together to keep the Internet alive and accessible, | ||
so people worldwide can be informed contributors and creators of the | ||
Web. We believe this act of human collaboration across an open | ||
platform is essential to individual growth and our collective future. | ||
</p> | ||
|
||
<p> | ||
Click on the images below to find more information about the cool | ||
stuff Mozilla does. | ||
<a href="https://www.flickr.com/photos/mathiasappel/21675551065/" | ||
>Red panda picture</a | ||
> | ||
by Mathias Appel. | ||
</p> | ||
</article> | ||
|
||
<div class="further-info"> | ||
<!-- insert images with srcsets and sizes --> | ||
<a href="https://www.mozilla.org/en-US/firefox/new/"> | ||
<img /> | ||
</a> | ||
<a href="https://www.mozilla.org/"> | ||
<img /> | ||
</a> | ||
<a href="https://addons.mozilla.org/"> | ||
<img /> | ||
</a> | ||
<a href="https://developer.mozilla.org/en-US/"> | ||
<img /> | ||
</a> | ||
<div class="clearfix"></div> | ||
</div> | ||
|
||
<div class="red-panda"> | ||
<!-- insert picture element --> | ||
</div> | ||
</main> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.