-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout_us.html
More file actions
73 lines (60 loc) · 2.47 KB
/
about_us.html
File metadata and controls
73 lines (60 loc) · 2.47 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DevDeskQue</title>
<link href="https://fonts.googleapis.com/css?family=Titillium+Web" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<!-- navigation code here -->
<nav>
<img src="img/LOGO3.png" style="width:250px;">
<div class="nav-about">
<h3>The Gurus</h3>
<div class="navigation-about">
<a href='index.html'>Home</a>
<a href='#'>About Us</a>
<a href="https://youthful-thompson-dec568.netlify.com/">Log-In</a>
</div>
</div>
</nav>
<div class="container-about">
<section>
<section class="gurus">
<div class="dj-expert">
<div class="dj-image">
<img src="img/modified2_djz.jpg">
<a href="https://github.com/djzaragoza"><i style="font-size:24px" class="fa"></i></a>
<a href="https://twitter.com/dzpinoy"><i style="font-size:24px" class="fa"></i></a>
<a href="https://lambdaschoolstudents.slack.com/messages/DFAEBRD55/team/UFAQLGZHC/"><i style="font-size:24px"
class="fa"></i></a>
</div>
</div>
</div>
<div class="dp-expert">
<div class="dp-image" style="width: 50px;">
<img src="img/modified2_DP.jpg">
<a href="https://github.com/DiamondPurvis"><i style="font-size:24px" class="fa"></i></a>
<a href="http://twitter.com/digitaldiamondj"><i style="font-size:24px" class="fa"></i></a>
<a href="https://lambdaschoolstudents.slack.com/messages/DJK9NPAT0/team/UE6RG290X/"><i style="font-size:24px"
class="fa"></i></a>
</div>
</div>
</section>
<footer>
<p>© DevDeskQue</p>
<p id="date"></p>
</footer>
<script>
const d = new Date();
document.getElementById("date").innerHTML = d.getFullYear();
</script>
<script>document.write(Date());</script>
</body>
</html>