-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
111 lines (91 loc) · 3.2 KB
/
about.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About</title>
<!-- Pretty Fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
<!-- CSS Defaults -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/default.css">
<!-- Main CSS file -->
<link rel="stylesheet" href="css/main.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
}
.team-member {
margin-bottom: 20px;
border-bottom: 1px solid #ccc;
padding-bottom: 20px;
}
.team-member:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
</style>
</head>
<body>
<div class="loading-container">
<div class="loading-screen">
</div>
</div>
<header>
<nav class="main-navigation">
<ul>
<li><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
</ul>
</nav>
</header>
<!-- Better to wrap barba container as close as possible -->
<div data-barba="wrapper">
<!-- Only this section changes on link navigation -->
<main data-barba="container" data-barba-namespace="about">
<div class="heading-container">
<h1 class="main-heading is-animated">About the Team<br>
<h2>John Doe</h2>
<p>Position: CEO</p>
<p>About: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam non libero et ante consectetur lobortis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed convallis nulla in eros aliquam consequat.</p>
<h2>Jane Smith</h2>
<p>Position: Marketing Director</p>
<p>About: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam non libero et ante consectetur lobortis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed convallis nulla in eros aliquam consequat.</p>
</div></h1>
</div>
</main>
</div>
<footer>
<ul>
<li><a href="">Alan Royce Gabriel</a></li>
<li>•</li>
<li><a href="" target="_blank">Find on Github</a></li>
</ul>
</footer>
</body>
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!-- Barba Core -->
<script src="https://unpkg.com/@barba/core"></script>
<!-- GSAP for animation -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.2.4/gsap.min.js"></script>
<!-- Some basic helper functions -->
<script src="js/helper.js"></script>
<!-- Main JS file -->
<script src="js/main.js"></script>
</html>