-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (29 loc) · 1.18 KB
/
index.html
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
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<!-- Instructions: Add a link to the stylesheet 'styles.css' at the designated spot below. -->
<!-- Hints:
* sample link: <link href="path-to-stylesheet/stylesheet.css" rel="stylesheet">
* path to stylesheet: "css/styles.css"
-->
<html>
<head>
<title>Link to a Stylesheet Quiz</title>
<!-- the next line loads the tests for the Udacity Feedback extension -->
<meta name="udacity-grader" content="http://udacity.github.io/fend/lessons/L3/problem-set/10-link-to-a-stylesheet/tests.json">
<!-- add link here -->
</head>
<body>
<div class="container">
<div class="portfolio">
<h1>My Portfolio</h1>
<div class="item">
<img src="img/out-cold.png" width="300">
<span>This specific design features a 3D floating mountain above a weathered, rugged font to insinuate a winter outdoor theme. This logo would be a perfect fit for an outdoor product company or ski resort.</span>
</div>
<div class="item">
<img src="img/retro-beach.png" width="300">
<span>This specific design features a beach-themed fading sunset with palm trees. The fading vertical bars in the sun resemble warmth as it fades away into the sunset.</span>
</div>
</div>
</div>
</body>
</html>