Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
iDTech-Neha authored Jan 11, 2024
0 parents commit e7aa350
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
42 changes: 42 additions & 0 deletions index.html
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>
18 changes: 18 additions & 0 deletions style.css
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;
}
Binary file added t-shirt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e7aa350

Please sign in to comment.