-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEmbeddedComputers.html
More file actions
39 lines (35 loc) · 1.14 KB
/
EmbeddedComputers.html
File metadata and controls
39 lines (35 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Your Page Title</title>
<meta name="description" content="A brief description of your web page">
<meta name="keywords" content="keywords, for, your, page">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="ECstyle.css">
</head>
<body>
<header>
<!-- This is the header -->
<h1>Positive contributions to Computer Science: Embedded Computers</h1>
<nav>
<h2>Link List</h2>
<ul>
<li><a href="#">Link1</a></li>
<li><a href="#">Link2</a></li>
<li><a href="#">Link3</a></li>
<li><a href="#">Mainpage</a></li>
</ul>
</nav>
</header>
<main>
<h2>What Are Embedded Computers?</h2>
<p>Believe it or not, most devices nowadays contain embedded computers: dishwashers, microwaves, even your car! </p>
<center><p><img src="embedded1.png" alt="Car Embedded Computer" width="500" height="400"></p></center>
<p></p>
</main>
<footer>
<p>© 2023 Your Website Name</p>
</footer>
</body>
</html>