-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (38 loc) · 1.24 KB
/
index.html
File metadata and controls
58 lines (38 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Ethan Yoshioka">
<title>Hello, CSS</title> <!--this is what shows up in the tab on browsers -->
<link href="https://fonts.googleapis.com/css?family=Varela+Round&display=swap" rel="stylesheet">
<link href="styling.css" rel="stylesheet">
</head>
<body>
<section>
<h1>Biography</h1>
<p>I'm Ethan, from California, </p>
<p>and this is my box model assignment!</p>
</section>
<section>
<ul>
<li>
<h3>Biology</h3>
<img src="biology.png">
<p>A legendary course to learn what we currently know about lifeforms!</p>
</li>
<li>
<h3>Math</h3>
<img src="math.png">
<p>From the basics of arithmatic to the depths of calculus, learn everything about computing here!</p>
</li>
<li>
<h3>Music</h3>
<img src="music.png">
<p>Utilizing our vast array of professionals, students can begin learning their craft early, from some of the best musicians in the world!</p>
</li>
</ul>
</section>
</body>
</html>