-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
63 lines (51 loc) · 1.63 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>todo</title>
<link rel="stylesheet" href="./style/about.css">
</head>
<body>
<header>
<li> <a href="index.html">Home</a> </li>
<li> <a href="about.html"> About</a></li>
</header>
<main>
<h1>Your Name</h1>
<img src="assest/businessapplication_edit_male_user_thepencil_theclient_negocio_2321.png" alt="logo">
<input type="text" name="Name" placeholder="Overview About Yourself">
<h1>Contact Me</h1>
<div class="form">
<div class="top-form">
<div class="inner-form">
<div class="label">Full Name</div>
<input type="text">
</div>
<div class="inner-form">
<div class="label">Email</div>
<input type="text">
</div>
<div class="inner-form">
<div class="label">Phone</div>
<input type="text">
</div>
<div class="bottom-form">
<div class="inner-form">
<div class="label">Your message</div>
<textarea></textarea>
</div>
</div>
</div>
<div class="btn">Send</div>
</div>
</main>
</main>
<br>
<br>
<footer>
<p>Created by tasneem. © 2022</p>
</footer>
</body>
</html>