-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcase-study-template.html
72 lines (64 loc) · 1.87 KB
/
case-study-template.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Victoria Cai : Case Study Title</title>
<link rel="stylesheet" type="text/css" href="https://brimwd.github.io/fontawesome/css/all.css">
<link href="https://fonts.googleapis.com/css?family=Gelasio|Raleway:600,700&display=swap" rel="stylesheet">
<link href="case-study-page.css" rel="stylesheet">
</head>
<body>
<nav><span>LOGO</span><a href="index.html">Home</a></nav>
<!-- BEGIN CASE STUDY -->
<article class="case-study">
<header>
<img src="" alt="HEADER LOGO TEXT" />
<h1>Case Study: <br />ARTICLE TITLE</h1>
<p>Article Subtitle</p>
<time datetime="YYYY-MM-DD">Month DD, YYYY</time>
</header>
<section class="overview">
<h2>Overview</h2>
<p></p>
<p></p>
<p></p>
</section>
<!-- NO IMAGES -->
<section>
<h2>HEADING TEXT</h2>
<p></p>
<p></p>
<p></p>
</section>
<!-- ONE EXPANDING IMAGE -->
<section>
<h2>HEADING TEXT</h2>
<img src="" class="can-zoom" alt="Image Title" />
<p></p>
<p></p>
<p></p>
</section>
<!-- GALLERY OF 3 IMAGES -->
<section>
<h2>HEADING TEXT</h2>
<div class="gallery">
<img src="" alt="Image 1 Title"/>
<img src="" alt="Image 2 Title"/>
<img src="" alt="Image 3 Title"/>
<span>(click to expand)</span><span class="collapse"><i class="fa fa-times"></i> collapse</span>
</div>
<p></p>
<p></p>
<p></p>
</section>
</article>
<!-- SHARED FOOTER -->
<footer><div class="container">
<p>I'm actively seeking new opportunities in Product Management.</p>
<p>Please reach out and help me grow.</p>
<!-- <p><a href="" title="" target="_blank"></a></p> -->
<p><a href="mailto:[email protected]" title="Email Victoria"><i class="far fa-fw fa-envelope" aria-hidden="true"></i> [email protected]</a></p>
<p><a href="https://linkedin.com/in/victoriajcai" title="Victoria's LinkedIn Profile" target="_blank"><i class="fab fa-fw fa-linkedin"></i> LinkedIn</a></p>
</div></footer>
</body>
</html>