forked from Julion0616/group-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (41 loc) · 1.48 KB
/
index.html
File metadata and controls
44 lines (41 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Class Roster</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<nav>
<h1>NYU Software Development Class!</h1>
</nav>
</header>
<main>
<h2>Class Members</h2>
<section class="container">
<div class="jane-style">
<h3>Hello World!</h3>
</div>
<!-- New HTML content goes here! -->
<div class="kevin-style">
<h3>My favorite restaurant: can you guess?</h3>
<h4>Hint: they stir fry noodles</h4>
<p>Go out and enjoy the sun!</p>
<p>I'm really enjoying our classes</p>
<p>Learning is about endless modification of one's own mindset.</p>
</div>
<div class="ashe-style">
<!--Information can be inputted between the brackets-->
<!--Hey kevin this example may be a bit confusing-->
<h3>My favorite restaurant: Desta Ethipion Restaurany</h3>
<h4>I eat there much more than I should!</h4>
<p>My oldest daughter is a sophmore in college!</p>
<p>My youngest daugther is a senior in high school!</p>
<p>I am the oldest of six.</p>
</div>
</section>
</main>
</body>
</html>