-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (46 loc) · 1.59 KB
/
index.html
File metadata and controls
53 lines (46 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@1,400;1,500&display=swap" rel="stylesheet">
<title>NASA</title>
</head>
<body>
<div class="container">
<main>
<h1>NASA</h1>
</main>
<div class="content">
<section class="socialMedia">
<h2>Social Media</h2>
<p>Twitter</p>
<p>Facebook</p>
<p>Instagram</p>
<p>Youtube</p>
</section>
<section class="officeInfo">
<h2>Office Info</h2>
<p>NASA Headquarters</p>
<p>300 E. Street SW, Suite 5R30</p>
<p>Washington, DC 20546</p>
<p>202) 358-0001 (Office)</p>
<p>(202) 358-4338 (Fax)</p>
</section>
<section class="contactUs">
<h2>Contact Us</h2>
<p>https://www.nasa.gov/content/submit-a-question-for-nasa</p>
<section class="textbox">
<form>
<label>Name</label>
<input type="text" id="textbox" name="Name"><br />
<label>Email</label>
<input type="text" id="email" name="name"><br />
</form>
</section>
</section>
</div>
</div>
</body>
</html>