forked from mr-gt/Assignment-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tools.html
79 lines (70 loc) · 2.88 KB
/
Tools.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<title>MR GT - Tools</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="Main.css">
<style>
h1,h2,h3,h4,h5,h6 {font-family: Halfomania}
body,p {font-family: "Montserrat", sans-serif}
.w3-row-padding img {margin-bottom: 12px}
.w3-sidebar {width: 150px;background: #222;}
#main {margin-left: 150px}
</style>
<body class="w3-black">
<nav class="w3-sidebar w3-bar-block w3-small w3-hide-small w3-center">
<a href="index.html" class="w3-bar-item w3-button w3-padding-large w3-text-orange w3-hover-orange">
<i class="fa fa-fw fa-home w3-xxlarge"></i>
<p>HOME</p>
</a>
<a href="Team Profile.html" class="w3-bar-item w3-button w3-padding-large w3-text-orange w3-hover-orange">
<i class="fa fa-fw fa-users w3-xxlarge"></i>
<p>TEAM PROFILE</p>
</a>
<a href="Tools.html" class="w3-bar-item w3-button w3-padding-large w3-text-orange w3-hover-orange">
<i class="fa fa-fw fa-wrench w3-xxlarge"></i>
<p>TOOLS</p>
</a>
<a href="Industry Data.html" class="w3-bar-item w3-button w3-padding-large w3-text-orange w3-hover-orange">
<i class="fa fa-fw fa-database w3-xxlarge"></i>
<p>INDUSTRY DATA</p>
</a>
<a href="IT Work.html" class="w3-bar-item w3-button w3-padding-large w3-text-orange w3-hover-orange">
<i class="fa fa-fw fa-laptop w3-xxlarge"></i>
<p>IT WORK</p>
</a>
<a href="IT Technologies.html" class="w3-bar-item w3-button w3-padding-large w3-text-orange w3-hover-orange">
<i class="fa fa-fw fa-microchip w3-xxlarge"></i>
<p>IT TECHNOLOGIES</p>
</a>
<a href="Project Ideas.html" class="w3-bar-item w3-button w3-padding-large w3-text-orange w3-hover-orange">
<i class="fa fa-fw fa-archive w3-xxlarge"></i>
<p>PROJECT IDEAS</p>
</a>
<a href="References.html" class="w3-bar-item w3-button w3-padding-large w3-text-orange w3-hover-orange">
<i class="fa fa-fw fa-book w3-xxlarge"></i>
<p>REFERENCES</p>
</a>
</nav>
<!-- Page Content -->
<div class="w3-padding-large" id="main">
<!-- Header/Home -->
<header class="w3-container w3-padding-32 w3-center w3-black" id="home">
<h1 style="font-size: 150px; color: orange">Tools</h1>
</header>
<!-- Tools Section -->
<div class="w3-content w3-justify w3-text-grey w3-padding-64" id="about" style="max-width:1200px">
<p style="font-size: 20px">
I am some text
</p>
</div>
<!-- Footer -->
<footer class="w3-content w3-padding-64 w3-text-grey w3-xlarge" style="max-width:1200px">
<p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" style="color: orange">w3.css</a></p>
</footer>
</div>
</body>
</html>