-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
57 lines (53 loc) · 2.15 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>test</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="portfolio.css" type="text/css"/>
</head>
<body>
<svg style="height: 300px; width:300px ;background-color:red;">
<circle fill="white" r="100" cx="130" cy="130" stroke="black" stroke-width="5px">hello</circle>
</svg>
<div>
designing:<meter
min=0
max=1
value=1.2
low=2.3
high=.9
optimum=.9
>
</meter>
<details open>
<summary>hello</summary>
<p>i am yahia shawky <hello>elkady Lorem ipsum, dolor sit amet consectetur adipisicing elit. Deserunt quisquam et fuga dolorem id libero,<wbr> molestias fugiat? Ut amet <mark>repellat</mark>? , nisi autem et, eum culpa earum delectus, porro accusantium?</p>
</details>
<figure >
<figcaption> a soldier</figcaption>
</figure>
</div>
<form oninput="result.value= parseInt(inp.value) * 365+ 'days'">
<input name="inp">
<output name="result"></output>
</form>
<audio controls autoplay loop preload="none">
<source>
</audio>
<div >
<video src="video1.mp4" controls height="300" width="300" poster="https://www.placehold.it/300/333" ></video>
<track src="" kind="captions" >
<form action="hama.php" method="GET">
<input type="text" autocomplete="">
<input type="submit">
<input type="range" name="inp" min="0" max="20" step=" 10" value="9" disabled>
<input type="number" name="inp" min="0" max="10" step="2" >
<input type="email" name="inp" >
<input type="tel" name="inp">
<input type="search" name="inp">
<input type="datetime-local" name="inp">
<input type="time" name="inp">
</form>
</div>
</body>
</html>