-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (65 loc) · 2.77 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'/>
<title>Raya's Photos</title>
<link href="https://fonts.googleapis.com/css2?family=Reenie+Beanie&display=swap" rel="stylesheet">
<link href='styles.css' rel='stylesheet'/>
</head>
<body>
<div class='header-container'>
<div class='header'>
<div><img class='logo'src='images/logo.png'/></div>
<ul class='menu'>
<li class='dropdown'><span>Menu ▾</span>
<ul class='features-menu'> <!-- Start of submenu -->
<li><a href='index.html'>Home</a></li>
<li><a href='portfolio.html'>Portfolio</a></li>
<li><a href='reviews.html'>Reviews</a></li>
<li><a href='about.html'>About</a></li>
</ul> <!-- End of submenu -->
</li>
</ul>
</div>
</div>
<!--<div class='white-space'></div>-->
<div class='clear'></div>
<div class='name-container'>
<div class='name'>Raya Esplin Photography</div>
</div>
<div class='photo-grid-container'>
<div class='photo-grid'>
<!--<div class='photo-grid-item first-item'>-->
<div><img class='photo-grid-item' src='images/ducks.jpeg'/>
</div>
<!--<div class='photo-grid-item'>-->
<div><img class='photo-grid-item' src='images/haileywedding.jpeg'/>
</div>
<!--<div class='photo-grid-item'>-->
<!--<div><img class='photo-grid-item' src='/Users/raywray/Desktop/CS 260 Projects/Lab1/images/KP.jpeg'/>
</div>-->
<!--<div class='photo-grid-item'>-->
<div><img class='photo-grid-item' src='images/oliveraya.jpeg'/>
</div>
<!--<div class='photo-grid-item'>-->
<!--<div><img class='photo-grid-item' src='/Users/raywray/Desktop/CS 260 Projects/Lab1/images/rayjay2.0.jpeg'/>
</div>-->
</div>
</div>
<div class='white-space'></div>
<div class='about-me-container'>
<div class='about-me'><h1>Hello!</h1>
<p>My name is Raya Esplin and I am a local photographer based out of Provo, UT.
I love making people feel good about themselves, and I've found that this can be
accomplished through taking photos of them! I love to hang out with my friends,
listen to music (currently obsessed with <a href="https://music.apple.com/us/album/unbothered/1520442879?i=1520442900"><u><em>Unbothered</em></u></a> by Tori Kelly),
and have fun!</p>
</div>
<div class='about-me-img'><img class='AMimage' src='images/me.jpeg'/></div>
</div>
<div class='clear'></div>
<div class='footer-container'>
<div class='footer'><a href="https://github.com/raywray/Lab1.git"><u>GitHub</u></a></div>
</div>
</body>
</html>