-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (103 loc) · 3.78 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
<!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" />
<title>LEI Web Developer</title>
<link rel="stylesheet" href="./assets/css/reset.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<header>
<div class="heading">
<h1>Laura Inman</h1>
<h4>Web Developer</h4>
</div>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#work">Work</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
</nav>
<!-- <img src="" alt="header image" /> -->
</header>
<main>
<!-- About Me Section -->
<section class="row about">
<h2 class="section-heading" id="about">About Me</h2>
<!-- <img src="" alt="pictue of me" /> -->
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Nobis debitis minima temporibus iusto enim est omnis nisi ad, dicta, modi animi dignissimos esse deserunt, harum nihil repellat veniam culpa facere?</p>
</section>
<!-- Work Section -->
<section class="row portfolio">
<h2 class="section-heading" id="work">Work</h2>
<div class="portfolio-content">
<div class="portfolio-column top-item">
<figure class="portfolio-item">
<div class="portfolio-header">
<h3>Snippet Cheatsheet</h3>
<h4>CSS Code Snippets</h4>
</div>
<img class="portfoliio-image" src="./assets/images/snippet-cheatsheet-screenshot.png" alt="Screenshot of Snippet Cheatsheet Website" width="300px"/>
</figure>
</div>
<div class="portfolio-column">
<figure class="portfolio-item">
<div class="portfolio-header">
<h3>Snippet Cheatsheet</h3>
<h4>CSS Code Snippets</h4>
</div>
<img class="portfoliio-image" src="./assets/images/snippet-cheatsheet-screenshot.png" alt="Screenshot of Snippet Cheatsheet Website" width="300px"/>
</figure>
</div>
<div class="portfolio-column">
<figure class="portfolio-item">
<div class="portfolio-header">
<h3>Snippet Cheatsheet</h3>
<h4>CSS Code Snippets</h4>
</div>
<img class="portfoliio-image" src="./assets/images/snippet-cheatsheet-screenshot.png" alt="Screenshot of Snippet Cheatsheet Website" width="300px"/>
</figure>
</div>
<div class="portfolio-column">
<figure class="portfolio-item">
<div class="portfolio-header">
<h3>Snippet Cheatsheet</h3>
<h4>CSS Code Snippets</h4>
</div>
<img class="portfoliio-image" src="./assets/images/snippet-cheatsheet-screenshot.png" alt="Screenshot of Snippet Cheatsheet Website" width="300px"/>
</figure>
</div>
<div class="portfolio-column">
<figure class="portfolio-item">
<div class="portfolio-header">
<h3>Snippet Cheatsheet</h3>
<h4>CSS Code Snippets</h4>
</div>
<img class="portfoliio-image" src="./assets/images/snippet-cheatsheet-screenshot.png" alt="Screenshot of Snippet Cheatsheet Website" width="300px"/>
</figure>
</div>
</section>
</div>
<!-- Contact Section -->
<section class="row contact">
<h2 class="section-heading" id="contact">Contact Me</h2>
<ul>
<li><a href="#">phone</a></li>
<li><a href="#">email</a></li>
<li><a href="#">github</a></li>
</ul>
<!-- </section>
<aside>
<ul>
<li id="about">About Me</li>
<li id="work">Work</li>
<li id="contact">Cont</li>
</ul>
</aside> -->
</main>
<footer><p>©2022 LEI Web Developer</p></footer>
</body>
</html>