-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
60 lines (53 loc) · 1.91 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="landing/favicon.ico" type="image/x-icon" />
<title>Scholarly Graphs</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./landing/style.css">
</head>
<body>
<div class="container">
<nav class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="search">Search</a></li>
<li><a href="#credits">Credits</a></li>
</ul>
</nav>
<section id="home">
</section>
<section id="credits">
<div class="wrapper">
<div class="sin-team">
<img src="./landing/person1.jpg" alt="">
<h2>Jovan Petrovic</h2>
<p>
He walked over to the window and reflected on his grand surroundings.
He had always hated noisy Planet-X with its ordinary, outrageous oceans.
It was a place that encouraged his tendency to feel irritable.
</p>
</div>
<div class="sin-team">
<img src="./landing/person2.jpg" alt="">
<h2>Kate Smith</h2>
<p>
Jovan gulped. He glanced at his own reflection.
He was a sympathetic, controlling, beer drinker with pink spots and solid legs.
His friends saw him as a vain, valid vicar. Once, he had even helped a fried puppy recover from a flying accident.
</p>
</div>
<div class="sin-team">
<img src="./landing/person3.jpg" alt="">
<h2>Anna Mcneal</h2>
<p>
But not even a sympathetic person who had once helped a fried puppy recover from a flying accident, was prepared for what Kate had in store today.
</p>
</div>
</div>
</section>
</div>
</body>
</html>