-
Notifications
You must be signed in to change notification settings - Fork 1
/
myWebpage.html
65 lines (58 loc) · 1.35 KB
/
myWebpage.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
<!DOCTYPE html>
<html>
<head>
<title> Sample webpage</title>
<!-- internal css -->
<!-- <style>
</style> -->
<!-- external css -->
<link rel="stylesheet" href="myDesign.css">
</head>
<body style="background-color: rgb(62, 71, 68); color: aliceblue;">
<h1 class="">Sample <i>Page</i> <a href="link2.html" class="sample" id="sample">My Link 1</a> </h1>
<img src="" alt="sample image" width="450px" height="450px">
<p>Lorem ipsum dolor sit amet.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt numquam ad voluptatibus cum labore perspiciatis,
ducimus saepe voluptatum impedit repellat? Accusamus temporibus quod quia maiores voluptas, enim optio quasi.
Voluptate?</p>
<h1>Lorem, ipsum dolor.</h1>
<input type="text">
<br>
<br>
<input type="password">
<input type="button" value="Click me">
<br>
<br>
<!-- <button>This is button element</button> -->
<br>
<hr>
<br>
<table border="1" class="sample">
<thead>
<tr>
<th>#</th>
<th>Firstname</th>
<th>Lastame</th>
<th>Gender</th>
<th colspan="2">Edit</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Juan</td>
<td>Cruz</td>
<td>Male</td>
<td><a href="">edit</a></td>
<td><a href="">delete</a></td>
</tr>
<tr>
<td>2</td>
<td>Cris</td>
<td>Ponnce</td>
<td>Male</td>
</tr>
</tbody>
</table>
</body>
</html>