-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
4 changed files
with
114 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,114 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Styles</title> | ||
|
||
<!-- internal css --> | ||
<style> | ||
/* css property and values */ | ||
.style-list { | ||
color: red; | ||
background-color: orange; | ||
} | ||
|
||
.style-ul-list { | ||
list-style-type: square; | ||
background-color: pink; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<!-- Lists --> | ||
<!-- unordered list | ||
li-> list item --> | ||
<h3>Web technologies</h3> | ||
|
||
<!-- inline css --> | ||
<ul class="style-ul-list"> | ||
<li class="style-list">HTML</li> | ||
<li class="style-list">CSS</li> | ||
<li class="style-list">JS</li> | ||
<li class="style-list">ReactJs</li> | ||
</ul> | ||
|
||
<!-- ordered list | ||
type="I" type="i" type="a" type="A" --> | ||
<ol type="A"> | ||
<li>HTML</li> | ||
<li>CSS</li> | ||
<li>JS</li> | ||
<li>ReactJs</li> | ||
</ol> | ||
|
||
<ol start="4" reversed> | ||
<li>HTML</li> | ||
<li>CSS</li> | ||
<li>JS</li> | ||
<li>ReactJs</li> | ||
</ol> | ||
|
||
<!-- description list | ||
dt-definition term | ||
dd->description defination--> | ||
<dl> | ||
<dt>HTML</dt> | ||
<dd>is used to structure <b>webpage.</b></dd> | ||
|
||
<dt>CSS</dt> | ||
<dd>is used to style <i>webpage.</i></dd> | ||
</dl> | ||
|
||
<!-- Formatting elements -del, sup, sub --> | ||
<p>Hello <del>world<del></del></p> | ||
<p>2 <sup>3</sup> = 2 × 2 × 2 = 8</p> | ||
<p>log <sub>10</sub> </p> | ||
|
||
<!-- Quotation elements --> | ||
<address> | ||
By alex joe <br> | ||
visit us:<br> | ||
admin.com<br> | ||
Street 201<br> | ||
USA | ||
</address> | ||
|
||
<p>HTML <abbr title="Hyper Text Markup Language">HTML</abbr></p> | ||
|
||
<q style="font-size: 40px;">Adding quotes</q> | ||
|
||
<p>Hi, this is <span style="color: red">Alina.</span></p> | ||
|
||
<div style="text-align: center; background-color: orange;"> | ||
<img src="./download.png" alt="html"> | ||
</div> | ||
|
||
<p>₹ 20000 </p> | ||
<p>© Rights belong to Edyoda</p> | ||
|
||
<p> 3 > 2 | ||
< | ||
> | ||
</p> | ||
|
||
<p>Hi, This is <span style="color:red; display: block;">Alex.</span></p> | ||
|
||
</div> | ||
|
||
</body> | ||
|
||
</html> | ||
|
||
<!-- pseudo element | ||
::marker | ||
--> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
Binary file not shown.