-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout
More file actions
60 lines (53 loc) · 2 KB
/
About
File metadata and controls
60 lines (53 loc) · 2 KB
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
<!DOCTYPE html>
<head>
<title>Meet Bot - About</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="navbar">
<header>
<div id="page_wrapper">
<a href="index.html"><img src="logo.jpg" alt="logo" /></a>
<nav>
<ul>
<li><a href="about.html">About </a></li>
<li><a href="#"> </a></li>
<li><a href="login.html">Login</a></li>
</ul>
</nav>
</header>
<div id="container">
<!-- Use the main area to add the main content of the webpage -->
<div id="container">
<main>
<form class="grid">
<fieldset>
<legend></legend>
<h1>The A.I. Meeting</h1>
<h1>About That Life</h1>
<h1>Too Easy</h1>
</fieldset>
<fieldset>
<legend><b>SUMMARY</b></legend>
<label for="fName"> First Name</label>
<input type="text" name="fName" id="fName" />
<label for="lName"> Last Name</label>
<input type="text" name="lName" id="lName" />
<label for="email"> E-Mail</label>
<input type="email" name="email" id="email" />
<label for="password"> Password</label>
<input type="password" name="password" id="password" />
<input type="submit" value="Submit" class="btn" />
</fieldset>
</form>
</div>
</main>
<!-- Use the footer area to add webpage footer content -->
<footer>
<p>The Dream Team: Abraham, Sam, Rachelle, Yousef & Xin</p>
</footer>
</div>
</body>
</html>