-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
71 lines (56 loc) · 2.26 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
64
65
66
67
68
69
70
71
<!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>About Page</title>
<link rel="stylesheet" href="./style/about.css">
<!-- <style></style> -->
<script></script>
</head>
<body>
<div class="grid-container background">
<header class="header-sec">
<img src="assets/Logo2.png" alt="Logo" class="image1">
<nav class="header-nav">
<a href="./index.html">Home</a>
<a href="#">About</a>
</nav>
</header>
<main class="background">
<figure class="figure1">
<img src="./assets/Pic2.jpeg" alt="image" width="300px" height="350px">
<figcaption class="fig-cap">
<b>Renad Khawatreh</b><br>
<p>Hello, I'm a Computer System Engineer. <br>
I love tackling new challenges and collaborating with all kinds of
interesting people along the way.</p>
</figcaption>
<form class="form1">
<section class="help-box">
<p><b>Need help?</b> We're here for you!<br>Please send me a Message</p>
</section>
<div>
<label>Your Name</label>
<input type="text" placeholder="Your Name" required>
</div>
<br>
<div>
<label>Your Email</label>
<input type="email" placeholder="Email" required>
</div>
<br>
<div>
<textarea name="Your Message" cols="30" rows="10" placeholder="Write Your Message"></textarea>
</div>
<input type="submit" value="Contact Me">
</form>
</figure>
</main>
<footer class="background">© ToDo List, Inc. All rights reserved.<br>
Use of our products and services are governed by our Terms of Use and Privacy Policy.
</footer>
</div>
</body>
</html>