Skip to content

Commit

Permalink
Week 8 Files
Browse files Browse the repository at this point in the history
  • Loading branch information
dac18026 committed Mar 15, 2021
1 parent 44cf0c2 commit e0b36f0
Show file tree
Hide file tree
Showing 6 changed files with 135 additions and 0 deletions.
1 change: 1 addition & 0 deletions week-8/picture-element-master/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
66 changes: 66 additions & 0 deletions week-8/picture-element-master/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
body {
font-family: Arial, Helvetica, sans-serif;
margin: 1em;
background-color: azure
}
h1,h2, h3, h4, h5, h6 {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

a:link {
color: rgb(101, 101, 206);
}
a:hover{
color:rgb(61, 61, 126);
}
a:visited {
color:rgb(107, 107, 121)
}


figure.quote {
color: #698b9c;
margin: 2em 1em;
background-color: white;
font-size: 1.25em;
border-left: 1px dotted rgb(139, 139, 207);
padding: 0 1em;
}
figcaption::before {
content: "— ";
}
figcaption {
line-height: 1.5em;
}
blockquote {
margin: 0;
padding: 0;
}

code {
background-color: rgb(234, 234, 234);
}

li {
margin-bottom: 1em;
}

hr {
border: 1px dotted rgb(139, 139, 207);
margin: 2em;
}



@media (min-width: 945px ) {
main {
display: flex;
}
main > article, main > aside {
width: 50%;
}
img {
float: right;
max-width: 100%
}
}
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.
68 changes: 68 additions & 0 deletions week-8/picture-element-master/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Picture Element Exercise</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css"
/>
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css" />
</head>
<body>
<main>
<article>
<h1>Using the &lt;picture&gt; Element</h1>
<figure class="quote">
<blockquote>
<code>srcset</code> if you’re lazy, <code>picture</code> if you’re
crazy™
</blockquote>
<figcaption>
<a href="https://twitter.com/wilto">Mat Marquis</a>
</figcaption>
</figure>

<p>
Using <code>srcset</code> and <code>sizes</code> is extremely easy,
but it places all decisions in the hands of your web browser. You may
provide recommendations for the images that are served to your users,
but ultimately it's the decision of the web browser.
</p>

<p>
The picture element gives us significantly more control over the
images that we serve to our users. As a result, it can be more
time-consuming to configure.
</p>

<hr />

<h2>Instructions</h2>
<ol>
<li>
Add the <code>picture</code> element to the <code>aside</code>. Set
one of our 3 images (in <code>images/</code>) to the default image.
</li>
<li>Add a <code>source</code> that uses the large image at 945px.</li>
<li>
Add a <code>source</code> that uses the extra large image at 1100px.
</li>
<li>Publish this page and submit your link to HuskyCT.</li>
</ol>
</article>

<aside>
<picture>
<source media="(min-width: 1100px)" srcset="images/extralarge.jpg" />

<source media="(min-width: 945px)" srcset="images/art-large.jpg" />

<img src="images/art-medium.jpg" alt="cool art" />
</picture>
</aside>
</main>
</body>
</html>

0 comments on commit e0b36f0

Please sign in to comment.