-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLab1.html
More file actions
58 lines (50 loc) · 1.93 KB
/
Copy pathLab1.html
File metadata and controls
58 lines (50 loc) · 1.93 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./main_style.css" />
<h1>The A Team</h1>
</head>
<body>
<nav>
<a class="navLink" href="./Lab1.html">Home </a>
<a class="navLink" href="./about.html">About </a>
<a class="navLink" href="./contact.html">Contact</a>
</nav>
<div class="row">
<figure class="teamFigures">
<img class="teamPics" src="./img/IMG_5471.jpg" alt="Austin" width="300" height="300" />
<figcaption>Austin</figcaption>
</figure>
<figure class="teamFigures">
<img class="teamPics" src="./img/IMG_5472.jpg" alt="Nathan" width="300" height="300" />
<figcaption>Nathan</figcaption>
</figure>
<figure class="teamFigures">
<img class="teamPics" src="./img/IMG_5473.jpg" alt="Tyler" width="300" height="300" />
<figcaption>Tyler</figcaption>
</figure>
<figure class="teamFigures">
<img class="teamPics" src="./img/IMG_5474.jpg" alt="Adrik" width="300" height="300" />
<figcaption>Adrik</figcaption>
</figure>
</div>
<br>
<p class="welcome">Welcome to our page! We are learning HTML in this class. We don't know how to style so the site
looks ugly!!!</p>
<div class="quoteDiv">
<blockquote>"Don't believe everything you read online" - Abraham Lincoln</blockquote>
<img src="./img/my boy abe.png" alt="Abe" width="100" height="100" />
</div>
</body>
<footer>
<p>
CST336 Internet Programming. 20XX Phipps, Renteria<br>
<b>Disclaimer: </b> The information in this webpage is ALL REAL.<br>
It is used for academic purposes only.
</p>
<img src="./img/csumb logo.jpg" alt="CSUMB Logo" width="200" height="100" />
</footer>
</html>