-
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 e7aa350
Showing
3 changed files
with
60 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,42 @@ | ||
<DOCTYPE! html> | ||
<html> | ||
<head> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<h1>T-Shirts for Sale</h1> | ||
|
||
<p>Welcome to the T-Shirt shop. Here is where I sell my T-Shirts.</p> | ||
|
||
<div id="shirt"> | ||
<div id="image"><img src="t-shirt.png" width=200px></div> | ||
<div id="description"><p>This is a shirt with a smiley face on it!</p></div> | ||
</div> | ||
|
||
<div id="reviews"> | ||
<div class="review"> | ||
<p id="name">Aaron</p> | ||
<p id="content">I liked this shirt a lot it looks very cool and all my friends complimented me.</p> | ||
</div> | ||
<div class="review"> | ||
<p id="name">Adam</p> | ||
<p id="content">This shirt is terrible. I hate the design, it looks awful!</p> | ||
</div> | ||
<div class="review"> | ||
<p id="name">Luke</p> | ||
<p id="content">This shirt is okay. It's not the best and not the worst.</p> | ||
</div> | ||
<div class="review"> | ||
<p id="name">Anna</p> | ||
<p id="content">This shirt is good. The material is soft and comfortable to wear.</p> | ||
</div> | ||
<div class="review"> | ||
<p id="name">Miya</p> | ||
<p id="content">I think this shirt is alright. The sizing isn't great and the design is very bland and boring.</p> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> |
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,18 @@ | ||
body { | ||
background-color: green; | ||
color: burlywood; | ||
padding: 10px; | ||
} | ||
|
||
#image { | ||
float: left; | ||
} | ||
|
||
#description { | ||
float:right; | ||
} | ||
|
||
|
||
#reviews { | ||
clear: both; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.