-
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 f5eaf0e
Showing
1 changed file
with
24 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,24 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>Document</title> | ||
<style> | ||
span { | ||
color: red; | ||
} | ||
|
||
</style> | ||
</head> | ||
<body> | ||
<h1>Main Heading</h1> | ||
<h2>Second Level Heading</h2> | ||
<div>This is a div element</div> | ||
<p>Here is a paragraph within container div!! Also added <span> a span</span> element within the paragraph!!</p> | ||
<span>A different span element!!</span> | ||
<span>Another span element!!</span> | ||
<p>Here is another paragraph</p> | ||
</body> | ||
</html> |