-
Notifications
You must be signed in to change notification settings - Fork 0
/
indiv6.html
77 lines (66 loc) · 2.75 KB
/
indiv6.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
<!DOCTYPE html>
<html>
<head>
<title>Refugee Stories</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./css/index.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto:300&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="container2" <!-- Logo and NavBar -->
<div class="top-bar">
<div class="top-left">
<img class="logo" src="./Assets/Images/Logo.png" />
<p class="logo-text">Refugee Stories</p>
</div>
<nav class="navigation">
<a href="./stories.html">Refugee Stories</a>
<a href="#">Submit Story</a>
<a href="about.html">About Us</a>
<a href="#">Contribute</a>
<a href="#">Sign In</a>
</nav>
</div>
<div class="carousel">
<img src="Assets/Images/About Us/Hero Image.png" />
</div>
<div class="about-main-indiv">
<p><a href="about.html">About Us</a> / Nolan Allen</p>
<div class="box">
<img src="Assets/Images/Headshots/image6.JPG" />
<div class="about-box">
<h2>About Me</h2>
<p>Nolan is a lambda school student currently in the Full-stack
web development program.
</p>
</div>
<h2>My Role</h2>
<p>Nolan's role is in back-end architecture.
The back-end is the code that runs on the server, that receives requests
from the clients, and contains the logic to send the appropriate data back to
the client. The back-end also includes the database, which will persistently
store all of the data for the application. This article focuses on the hardware
and software on the server-side that make this possible.</p>
<p>
The back-end is all of the technology required to process the incoming request and
generate and send the response to the client. This typically includes three major parts:
The server. This is the computer that receives requests.
The app. This is the application running on the server that listens for requests, retrieves information from
the database, and sends a response.
The database. Databases are used to organize and persist data.
</p>
<a href="https://medium.com/">Medium</a>
<a href="twitter.com">Twitter</a>
<a href="github.com">Github</a>
<a href="behance.com">Behance</a>
</div>
</div>
<footer>
<p>Logo is an empathy symbol from https://empathysymbol.com</p>
<p>Stories and pictures from https://www.unhcr.org</p>
</footer>
</div>
</div>
</body>
</html>