-
Notifications
You must be signed in to change notification settings - Fork 0
/
eva.html
95 lines (74 loc) · 3.19 KB
/
eva.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang= "en">
<head>
<meta charset = "utf-8" />
<title> Eva's new page</title>
<link rel = "stylesheet" href = "style.css" />
</head>
<body style = "font-family:fantasy">
<header>
<h2 style = "font-size: 60px"> I am having fun</h2>
</header>
<hr>
<p id = "para1">WWF's goal is to: <q>puts in quotation marks</q></p>
<blockquote cite="http://www.worldwildlife.org/who/index.html" >
<h3>defines if the quote is taken from another source</h3>
</blockquote>
<p class = "center large">The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
<section>
something somethingsomethingsomethingsomethingsomethingsomethingsomethingsomethingsomethingsomething
<p class = large title = "I am a tooltip">somethingsomethingsomethingsomethingsomethingsomethingsomethingsomethingsomethingsomethingsomething
<br>somethingsomethingsomethingsomethingsomethingsomethingsomethingsomethingsomethingsomethingsomething
somethingsomethingsomething
</p>
<nav>
<ul class = "a">
<li> <a href="https://www.w3schools.com/html/html_basic.asp">open link</a> </li>
<li><img src = "w3schools.jpg" alt = "image cannot be displayed" width = "104" height = "142"></li>
<li><button> click me </button></li>
</ul>
</nav>
<pre>
<b>my name is sth </b>
<strong>sitting beside me is rajan</strong>
<ins>sitting infront of me is deepesh </ins>
<mark>i miss popo </mark>
</pre>
<p><img src="puppy.jpg" alt="very cute puppy" style="float:right;width:150px;height:100px;">
change this image</p>
<picture>
<source media="(min-width: 650px)" srcset="goldie.jpg">
<img src = "pup.jpg" style= "width:auto">
</picture>
<table id = "newtable">
<caption>a moderate table</caption>
<tr>
<th> First name</th>
<th>Last name</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
</section>
<aside>
<h4>the sidebar</h4>
Popo is the cutest in the world
end of the page hence the footer
he so cutie
</aside>
<div>
hello <span style = "color : red">hello</span> 123
</div>
<h1> Web page within another web page</h1>
<iframe src = "https://www.w3schools.com" name = "iframe_a" height = "200" width = "1000" style= "border: 2px red"> </iframe>
</body>
</html>