-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
59 lines (57 loc) · 1.8 KB
/
contact.html
File metadata and controls
59 lines (57 loc) · 1.8 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
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Simple Website</title>
<link rel="stylesheet" href="./css/styles.css" />
<style> @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); </style>
</head>
<body>
<!--This header section is just a basic navigation
bar that sticks to the top of the page with basic file linking.-->
<header>
<h1>Raj's Garage</h1>
<nav>
<ul>
<li><a href="./index.html">Garage</a></li>
<li><a href="./guides.html">Guides</a></li>
<li><a href="./about.html">Ranks</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href="./times.html">Homework3 - Times</a></li>
<li><a href="./scrabble.html">Homework5 - Scrabble</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>Contanct Information</h1>
<div class="container">
<img class="image" src="./images/selfie1.jpg">
<div>
<h2>Raj Ray (Author)</h2>
<p>999-999-9999</p>
<p>Raj_Ray@student.uml.edu</p>
</div>
</div>
</div>
</main>
<footer>
<p>© Raj's Desk</p>
<p>
<a href="https://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="https://jigsaw.w3.org/css-validator/images/vcss"
alt="Valid CSS!" />
</a>
</p>
<p>
<a href="https://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="https://jigsaw.w3.org/css-validator/images/vcss-blue"
alt="Valid CSS!" />
</a>
</p>
</footer>
</body>
</html>