-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (162 loc) · 4.96 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Olivia Roorbach photography website, focusing on black and white portrait and landscape photography"
/>
<!-- CSS only -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
crossorigin="anonymous"
/>
<!-- JavaScript Bundle with Popper -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&family=Rozha+One&family=Ubuntu:wght@300;400&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/fdfc86a323.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="src/styles.css" />
<title>Olivia Roorbach | Photography</title>
</head>
<body>
<div class="background">
<div class="container">
<header class="d-flex">
<a href="/">
<img
src="images/She Codes.png"
class="logo d-none d-md-block"
title="Return Home"
/></a>
<ul>
<li class="li-home"><a href="/" class="active">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/gallery.html">Gallery</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</header>
</div>
</div>
<div class="hero">
<h3>Olivia Roorbach</h3>
<h1>Photography</h1>
<p>
Nisl faucibus quis urna nibh ut amet. Diam suscipit pretium massa,
sollicitudin in risus in. Sagittis.
</p>
<div>
<a href="index.html#main" class="start-button">Get Started</a>
</div>
</div>
<div class="container main-content" id="main">
<div class="d-flex content">
<img
src="images/Rectangle 107.png"
alt="old school car headlight"
class="item img-fluid"
/>
<img
src="images/Rectangle 108.png"
alt="art gallery"
class="item img-fluid"
/>
<img
src="images/Rectangle 109.png"
alt="misty cliff side"
class="item img-fluid"
/>
</div>
<div class="d-flex content">
<img
src="images/Rectangle 107 (1).png"
alt="man walking down a mountain road"
class="item img-fluid"
/>
<img
src="images/Rectangle 108 (1).png"
alt="aerial shot of scenic drive near the ocean"
class="item img-fluid"
/>
<img
src="images/Rectangle 109 (1).png"
alt="artistic stairs and shadows"
class="item img-fluid"
/>
</div>
<div class="d-flex content">
<img
src="images/Rectangle 107 (2).png"
alt="a pensive man"
class="item img-fluid"
/>
<img
src="images/Rectangle 108 (2).png"
alt="looking down city streets"
class="item"
/>
<img
src="images/Rectangle 109 (2).png"
alt="birds eye of city buildings"
class="item img-fluid"
/>
</div>
<div class="d-flex content">
<img
src="images/Rectangle 107 (3).png"
alt="woman headshot"
class="item img-fluid"
/>
<img
src="images/Rectangle 108 (3).png"
alt="eiffel tower looking up"
class="item img-fluid"
/>
<img
src="images/Rectangle 109 (3).png"
alt="contemporary patterns"
class="item img-fluid"
/>
</div>
</div>
<div class="background">
<div class="container">
<footer class="d-flex">
<div>
<a href="/">
<img src="images/She Codes.png" class="logo" title="Return Home"
/></a>
</div>
<div class="footer-icon">
<a
href="https://github.com/oroorbach/Figma_Project"
target="_blank"
>
<i class="fa-brands fa-github"></i
></a>
<i class="fa-brands fa-square-facebook"></i>
<i class="fa-brands fa-linkedin"></i>
</div>
<div>
<p class="copywrite">2021SheCodes Copywrite</p>
</div>
</footer>
</div>
</div>
</body>
</html>