-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
48 lines (42 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Coding Under COVID </title>
<link href="styles.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<nav id = "nav">
<div class = "logo">
<a href = "./index.html" class = "sitetitle"> Coding Under COVID </a>
</div>
<div class = "tabbar">
<li> <a class = "tabs" href = "./about.html"> Meet the Founder </a> </li>
<li> <a class = "tabs" href = "./resources.html"> Resources </a> </li>
<li> <a class = "tabs" href = "./covid19.html"> COVID-19 Info </a> </li>
</div>
</nav>
<section class = "about">
<h2> Meet the Founder: Liana Adaza </h2> <br>
<div class = "aboutitems">
<img src="assets/founder.jpg" class = "aboutpic" alt="image of liana"/> <br>
<p class = "aboutdesc"> Hello! 👋🏼 <br> <br> I'm Liana Adaza, the founder of <span class = "italics"> Coding under COVID</span>. <br> <br>
I created this website in hopes to encourage people, especially the youth, to enter the wondrous world of coding during these uncertain times. <br> <br>
Please enjoy the plentiful resources offered in this website to SAFELY begin your computing journey today!
</p>
</div>
</section>
<footer id = "contact">
<h2> Contact Us </h2> <br>
<form>
<input class = "infobox" type = "text" placeholder = "Name">
<input class = "infobox" type = "number" placeholder = "Age">
<input class = "infobox" type = "email" placeholder = "E-Mail">
<input class = "infobox" type = "text" placeholder = "Message">
<button type = "button" onclick = "myFunction()" title = "Submit Message"> Submit </button>
</form>
</footer>
<script src = "script.js"> </script>
</body>
</html>