-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (94 loc) · 4.51 KB
/
Copy pathindex.html
File metadata and controls
98 lines (94 loc) · 4.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>CLS Portfolio</title>
<link rel="stylesheet" href="./assets/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<!--header/navigation-->
<header>
<img src="./assets/images/CLS-profile-pic.jpg" alt="" id="profile-pic">
<h1 id="profile-name">Courtney L. Stanton</h1>
<nav>
<ul>
<li>
<a href="#about-me">About Me</a>
</li>
<li>
<a href="#work">Work</a>
</li>
<li>
<a href="#contact-me">Contact Me</a>
</li>
</ul>
</nav>
</header>
<!--hero/jumbotron-->
<section class="hero">
<h2>Coder in progress!</h2>
</section>
<main class="section-flex">
<!--"about me" section-->
<section id="about-me" class="div-flex">
<h2 id="about-title" class="title-flex">About Me</h2>
<p id="about-flex" class="content-flex">
Coming soon!
</p>
</section>
<!--"work" section-->
<section id="work" class="div-flex">
<h2 id="work-title" class="title-flex">Work</h2>
<div id="work-flex" class="work-grid-wrapper content-flex" >
<div class="work-grid-container">
<div id="grid-item-1" class="grid-item">
<h5 id="project-name-1" class="project-name">Run Buddy</h5>
<a href="https://clstanton.github.io/run-buddy/" title="run-buddy" id="project-image-1" class="project-image" target="_blank"></a>
</div>
<div id="grid-item-2" class="grid-item">
<h5 id="project-name-2" class="project-name">Vacation Planner</h5>
<a href="https://roxyvaught.github.io/Vacation-Planner/" title="vacation-planner" id="project-image-2" class="project-image" target="_blank"></a>
</div>
<div id="grid-item-3" class="grid-item">
<h5 id="project-name-3" class="project-name">UpDog</h5>
<a href="https://github.com/clstanton/UpDog" title="up-dog" id="project-image-3" class="project-image" target="_blank"></a>
</div>
<div id="grid-item-4" class="grid-item">
<h5 id="project-name-4" class="project-name">Placeholder 4</h5>
<a href="#" title="" id="project-image-4" class="project-image" target="_blank"></a>
</div>
<div id="grid-item-5" class="grid-item">
<h5 id="project-name-5" class="project-name">Placeholder 5</h5>
<a href="#" title="" id="project-image-5" class="project-image" target="_blank"></a>
</div>
<div id="grid-item-6" class="grid-item">
<h5 id="project-name-6" class="project-name">Placeholder 6</h5>
<a href="#" title="" id="project-image-6" class="project-image" target="_blank"></a>
</div>
</div>
</div>
</section>
<!--"contact me" section-->
<section id="contact-me" class="div-flex">
<h2 id="contact-title" class="title-flex">Contact Me</h2>
<div id="contact-flex" class="content-flex">
<ul>
<li>
<a href="tel:813.777.3413">813.777.3413</a>
</li>
<li>
<a href="mailto:info@runbuddy.io">cstanton77@gmail.com</a>
</li>
<li>
<a href="https://clstanton.github.io/" target="_blank">GitHub</a>
</li>
<li>
<a href=https://www.linkedin.com/in/courtney-stanton-7784018/ target="_blank">LinkedIn</a>
</li>
</ul>
</div>
</section>
</main>
</body>
</html>