-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 2.02 KB
/
index.html
File metadata and controls
58 lines (54 loc) · 2.02 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>
<head>
<style>
.center{
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.table{
margin-left: auto;
margin-right: auto;
width: 51%;
}
body{
background-image: url("mybackground.jpg") ;
background-repeat: no-repeat;
background-size: 1800px 1000px;
}
</style>
<meta charset="utf-8">
<title> Mark's Programming Portfolio </title>
</head>
<body>
<img src="my-banner.jpg" alt="Banner" class="center" >
<table class="table" >
<thead>
<tr>
<td> <a href="index.html">
<img src="home-button.png">
</a> </td>
<td> <a href="javascripts.html">
<img src="javascripts-button.png">
</a> </td>
<td> <a href="apps.html">
<img src="apps-button.png">
</a> </td>
<td> <a href="about_me.html">
<img src="about-me-button.png">
</a> </td>
<td> <a href="final_project.html">
<img src="final_project_btn.png">
</a> </td>
</tr>
</thead>
</table>
<h1 class="center" > Welcome to Mark's Programming Portfolio</h1>
<h2 class="center" > <strong> Welcome to my website where you will be able to see the programs I've written for my CSC 106 course at the University of Rhode Island.
I wrote this webpage myself using HTML language. The different types of programs I've written are under their respective links above. There is also an
about me page with information about myself. </strong>
</h2>
</body>
</html>