-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
120 lines (109 loc) · 3.53 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
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Scroll</title>
<!-- font-awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
/>
<!-- styles -->
<link rel="stylesheet" href="./foodieTrust.css" />
</head>
<body>
<header id="home">
<!-- navbar -->
<nav id="nav">
<div class="nav-center">
<!-- nav header -->
<div class="nav-header">
<a href="./index.html"><img src="./EIO elvis logo.svg" class="logo" alt="logo" /></a>
<button class="nav-toggle">
<i class="fas fa-bars"></i>
</button>
</div>
<!-- links -->
<div class="links-container">
<ul class="links">
<li>
<a href="./index.html" class="home">home</a>
</li>
<li>
<a href="#projects" class="scroll-link">Projects</a>
</li>
<!-- <li>
<a href="#services" class="scroll-link">About</a>
</li> -->
<li>
<a href="#">About</a>
</li>
<li>
<a href="#contact" class="scroll-link">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- banner -->
<div class="banner">
</div>
</header>
<!-- about -->
<section id="projects" class="section">
<div class="title">
<img src="./Presentation 3/Slide2.jpg" alt="">
</div>
</section>
<!-- services -->
<!-- <section id="services" class="section">
<div class="title">
<div>
<img src="./Group 38.svg" alt="">
<br>
<h1>FoodieTrust</h1>
<p>Food delivery app, Order food from your favorite restaurant</p>
<a class="case-study" href="">View case study</a>
</div>
</div>
</section> -->
<!-- contact -->
<section id="contact" class="section">
<div class="title">
<h2>Let's <span>Connect !</span></h2>
</div>
<div class="container-2">
<form method="post" action="./index.php">
<p>Let's talk design!</p>
<!-- <label for="fname">Name</label>
<input type="text" id="name" name="name" placeholder="">
<label for="email">Email</label>
<input type="text" id="email" name="email" placeholder="">
<label for="subject">Message</label>
<textarea id="subject" name="subject" placeholder="Write Your Message.." style="height:200px"></textarea>
<input type="submit" value="Submit"> -->
</form>
<script type="text/javascript" src="https://form.jotform.com/jsform/230693837811563"></script>
</div>
</section>
<!-- footer -->
<footer class="section">
<p>
copyright © Trustenable Technologies
<span id="date"></span>. all rights reserved.
</p>
<p class="social">
<a href="http://github.com/iamteajazz/" target="_blank">Github</a>
<a href="http://www.linkedin.com/in/iamteajazz/" target="_blank">Linkedin</a>
<a href="http://twitter.com/iamteajazz" target="_blank">Twitter</a>
<a href="">Behance</a>
</p>
</footer>
<a class="scroll-link top-link" href="#home">
<i class="fas fa-arrow-up"></i>
</a>
<!-- javascript -->
<script src="app.js"></script>
</body>
</html>