-
Notifications
You must be signed in to change notification settings - Fork 13
/
contacts.html
124 lines (101 loc) · 4.57 KB
/
contacts.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!-- Declaration -->
<!DOCTYPE html>
<!-- The root element start from here -->
<html lang="eng">
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="3600">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Washera Academy the best online academy to learn coding" />
<meta name="kewords" content="HTML, CSS, JavaScript, React, Coding in Amharic" />
<meta name="author" content="Washera Academy" />
<title>Washera Academy | Static website</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@300;400;500;600;900&family=Lato:wght@300;400;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@300;400;500;600;900&family=Oswald:wght@400;600;700&family=Poppins:wght@300;400;500;600;900&family=Raleway:wght@400;500;600;900&family=Roboto+Condensed:wght@300;400;700&family=Roboto+Slab:wght@300;400;600;700&family=Roboto:wght@300;400;500;900&family=Ubuntu:wght@300;400;500;700&display=swap" rel="stylesheet">
<!-- CSS: Cascading Style Sheet -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous" />
<link rel='stylesheet' href="./assets/css/styles.css" />
</head>
<body>
<div id='root'>
<header>
<h1 id="title-1" class="title">
<span id="washera"> Washera</span>
<span id="academy">Academy</span>
</h1>
<ul class="menu-list">
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="./about.html">About</a>
</li>
<li>
<a href="./courses.html">Course</a>
</li>
<li>
<a href="./projects.html">Projects</a>
</li>
<li>
<a href="./application.html">Apply</a>
</li>
<li>
<a href="./contacts.html" class='active'>Contacts</a>
</li>
</ul>
</header>
<main>
<div>
<h1>Contact Us</h1>
<form>
<div class="form-group">
<label for="firstname">First Name</label>
<input type="text" id="firstname" placeholder="Your name" />
</div>
<div class="form-group">
<label for="lastname">Last Name</label>
<input type="text" id="lastname" placeholder="Your name" />
</div>
<div class="form-group">
<label for="company">Company</label>
<input type="text" id="company" placeholder="Your companyname" />
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" placeholder="Your email" />
</div>
</div>
<div class="form-group">
<label for="message">Leave your message</label> <br />
<textarea name="message" id="message" cols="80" rows="10"></textarea>
</div>
<div class="form-group">
<input type="submit" value='Submit' class="btn">
</div>
</form>
</div>
</main>
<footer>
<div class="footer-wrapper">
<div>
<a href='https://github.com/Asabeneh' target="_blank"><i class="fab fa-github-square"></i></a>
<a href="https://www.linkedin.com/in/asabeneh/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/Asabeneh" target="_blank">
<i class="fab fa-twitter-square"></i>
</a>
</div>
<div>
<small>Copyright © 2021 | Asabeneh Yetayeh</small>
</div>
<div class="footer-arrow">
<a href="#root">
<i class="fas fa-arrow-alt-circle-up"></i>
</a>
</div>
</div>
</footer>
</div>
</body>
</html>
<!-- The root element ends here -->