forked from PomoRev/CST8285_S22
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpre-midterm.htm
More file actions
49 lines (39 loc) · 1.32 KB
/
pre-midterm.htm
File metadata and controls
49 lines (39 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Prof. Frank Emanuel">
<meta name="email" content="emanuef@algonquincollege.com">
<meta name="date" content="2022-06-21">
<link rel="stylesheet" href="css/example.css">
<title>Getting Ready!</title>
<style>
/* @import url('https://fonts.googleapis.com/css2?family=Fascinate&display=swap');
*/
@font-face {
font-family: "Charles" ;
src: url('fonts/Roboto-Regular.ttf') format('truetype');
}
h1, h2, h3, h4 {
font-family: Charles, sans-serif;
}
</style>
</head>
<body>
<header>Getting Ready!</header>
<p class="bodytext">Here is a paragraph.</p>
<p class="bodytext">Here is another paragraph.</p>
<p class="othertype">And here is yet another paragraph.</p>
<p class="bodytext">Whoah, even another one.</p>
<!-- example of a flex inside a flex! -->
<div id="outerbox">
<nav class="inner" id="innerbox">
<button>one</button>
<button>two</button>
<h1 class="inner inlineheader">title</h1>
</nav>
<h1 class="inner">another title</h1>
</div>
</body>
</html>