forked from EthanYosh/hello_css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (18 loc) · 714 Bytes
/
index.html
File metadata and controls
27 lines (18 loc) · 714 Bytes
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
<!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="bring-it-to-life.css" rel="stylesheet">
</head>
<body>
<h1>Hello, CSS Assignment</h1>
<h2>Css is cool for making things look pretty</h2>
<p>It takes certain HTML portion and makes them look different </p>
<p>Hello whoever is grading this :)</p>
</body>
</html>