-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsfaculty.html
More file actions
56 lines (47 loc) · 2.3 KB
/
csfaculty.html
File metadata and controls
56 lines (47 loc) · 2.3 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
<!-- Author: Vishwa Venkateshwaran -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="csfacultystyle.css">
<title>Computer Science Inventory</title>
</head>
<body>
<header>
<h1 class="fontFamily">
<span class="wordCS">Computing Science</span>
<span class="wordInventory">Inventory</span>
</h1>
<img src="menu.png" alt="An image of a menu">
</header>
<main >
<section class="container">
<section class="container2 container2_1">
<img src="5.jpg" class="actualImages img5" alt="Database Processing by Kroenke and Auer">
<p class="textUnderImg5 textUI">Some description</p>
<button class="seeMoreButton textUnderImg5">See more</button>
</section>
<section class="container2 container2_2">
<img src="6.jpg" class="actualImages img6" alt="C++ Early Objects by Gaddis, Walters, and Muganda">
<p class="textUnderImg6 textUI">Some description</p>
<button class="seeMoreButton textUnderImg6">See more</button>
</section>
<section class="container2 container2_3">
<img src="7.jpg" class="actualImages img7" alt="Introduction to Engineering Analysis by Hagen">
<p class="textUnderImg7 textUI">Some description</p>
<button class="seeMoreButton textUnderImg7">See more</button>
</section>
<section class="container2 container2_4">
<img src="0.jpg" class="actualImages img0" alt="Basics of Web Design by Felke-Morris">
<p class="textUnderImg0 textUI">Some description</p>
<button class="seeMoreButton textUnderImg0">See more</button>
</section>
</section>
</main>
<footer class="footer-link">
<a href="index.html" class="fontFamily footerLink">﹤ BACK TO THE MAIN MENU</a> <br>
</footer>
</body>
</html>