-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
76 lines (76 loc) · 2.93 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
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Testing</title>
<link rel="stylesheet" type="text/css" href="about.css">
<script src="index.js"></script>
</head>
<body>
<div class="header">
<div class="inner-header">
<div class="logo-container">
<h1>beYour<span>OwNBOsS</span></h1>
</div>
<div class="pill-nav">
<a href="contact.html">Contact</a>
<a href="services.html">Services</a>
<a href="about.html">About</a>
<a href="index.html">Home</a>
</div>
</div>
</div>
<div id="about">
<div id="position">
<h1>About us</h1>
<img src="./IMAGE/bust idea.png" height=500px width=100%>
<h2>Our Vision</h2>
<p>A world class plantform of excellence in innovation.</p>
<h2>Our Mission</h2>
<p>To provide quality training to youth to understand and act on local and global challenges.</p>
</div>
<div id="qualities">
<h2>Our Qualities</h2>
<ul>
<li>Innovation</li>
<li>Hardwork</li>
<li>Integrity</li>
<li>Teamwork</li>
</ul>
</div>
<div id="images">
<img src="./IMAGE/online.jpg" height="400px" width="450px">
<img src="./IMAGE/best.png" height="400px" width="450px">
<img src="./IMAGE/pic.jpg" height="400px" width="600px">
</div>
<div id="goals">
<h2>Our Values</h2>
<li>To create opportunities for youths to get involved and grow regardless of where they are.</li>
<li>To empower young people to become agents of possitive change in their local and global communities.</li>
<li>To enhance social status of youths.</li>
<li>To facilate youths to became finacially independent.</li>
</div>
</div>
<h3>Contact Us</h3>
<h4>We are here to get your feedback.</h4>
<div class="container">
<form action="/action_page.php">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="country">Country</label>
<select id="country" name="country">
<option value="kenya">kenya</option>
<option value="uganda">Uganda</option>
<option value="tanzania">Tanzania</option>
</select>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>