-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 2.54 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Nathan's Website</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<meta name="description" content="Personal website created for Software Lab Homework #5">
<meta name="author" content="Nathan Stern">
<style>
.paragraph{
background-color: coral;
color: black;
border: 2px black;
padding: 20px;
margin: 20px;
text-align: center;
}
</style>
</head>
<body>
<div>
<h1 id="titleHeader">Nathan's Website</h1>
</div>
<div class="paragraph">
<h2>Purpose</h2>
<p>This page was created for Homework #5 of ECE461L. Below is a link to the university's website.</p>
<a href="https://www.utexas.edu/">The University of Texas at Austin</a>
</div>
<br>
<div class="paragraph">
<h2>Image</h2>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Texas_Longhorns_logo.svg/2560px-Texas_Longhorns_logo.svg.png" width="717" height="365">
<p>This is the logo of the University of Texas</p>
</div>
</body>
</html>