-
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
1 parent
c984c66
commit cf33a88
Showing
1 changed file
with
30 additions
and
35 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 |
---|---|---|
@@ -1,37 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>cactus card</title> | ||
<link rel="stylesheet" href="card.css"> | ||
</head> | ||
<body> | ||
|
||
|
||
<div class="parent-div"> | ||
|
||
<div class="card-body"> | ||
<img src="cactus_img.jpg" alt="Image of cactus plant"> | ||
|
||
<div>Design</div><br> | ||
<Span class="bracing">Embracing minimalism</Span><br> | ||
|
||
<span class="second">From minimalist sculptures to minimalist</span><br> | ||
|
||
<span class="third">paintings, this blog will inspire you to</span><br> | ||
<span class="forth" >appreciate the beauty that lies in simplicity</span> | ||
|
||
<hr> | ||
<span class="author" >Annie Spratt</span> | ||
|
||
|
||
</div><!--The card-body ends here --> | ||
|
||
|
||
</div><!--The parent div ends here --> | ||
|
||
|
||
|
||
</body> | ||
</html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>cactus card</title> | ||
<link rel="stylesheet" href="card.css" /> | ||
</head> | ||
<body> | ||
<div class="parent-div"> | ||
<div class="card-body"> | ||
<img src="cactus_img.jpg" alt="Image of cactus plant" /> | ||
|
||
<div>Design</div> | ||
<br /> | ||
<span class="bracing">Embracing minimalism</span><br /> | ||
|
||
<span class="second">From minimalist sculptures to minimalist</span | ||
><br /> | ||
|
||
<span class="third">paintings, this blog will inspire you to</span | ||
><br /> | ||
<span class="forth">appreciate the beauty that lies in simplicity</span> | ||
|
||
<hr /> | ||
<span class="author">Annie Spratt</span> | ||
</div> | ||
<!--The card-body ends here --> | ||
</div> | ||
<!--The parent div ends here --> | ||
</body> | ||
</html> |