-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
151 lines (123 loc) · 5.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" href="/Logo01.png" />
<title>Elizabeth Innemee</title>
<meta name="description" content="My portfolio">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="layout.css">
<link rel="stylesheet" href="typography.css">
<link rel="stylesheet" href="utilities.css">
<script defer src="../js/script.js"></script>
</head>
<body>
<!-- NAVBAR -->
<div class="navbar">
<a class="nav-title-link" href="../index.html">
<span class="nav-title">Architect Learning Python</span>
<a class="button" target="_blank" href="mailto:einnemee@gmail.com">
<span class="button-text">Contact</span>
</a>
</a>
</div>
<!-- MAIN PAGE CONTENT -->
<div id="main-content">
<!-- PROJECT HEADER -->
<div id="project-header">
<!--
TODO
- Change the 'main-title' text to the name of your project
- Change the 'body-text' text to a short and sweet description of your project (maybe the same as the one on the project card)
- Change "desktop.jpeg" to the image filename you uploaded in the assets/images folder.
-->
<div class="main-title">Hi, I'm Elizabeth Innemee</div>
<div class="body-text">With over four years of experience working on large scale and complex architectural projects using AutoDesk Revit,
and ten years overall in the architectural industry, I have become proficient at architectural modelling and creating families.
I have excelled at utilising the capabilities of Revit and I am developing my knowledge of Python coding and visual programming
in Dynamo with the aim to automate repetitive tasks, create complex and parametric geometries, and extract data from projects.
I will be sharing my learning projects on GitHub as part of my Python Software Engineer Bootcamp with Firebrand.</div>
<image class="project-header-image" src="MyPhoto.png"
width = "500"
height = "500" />
<br>
<br>
<div class="subheader-text">Captial of The Netherlands</div>
<div class="body-text">A simple guessing game using a while loop to guess the capital of The Netherlands.</div>
<a target="_blank" href="https://github.com/einnemee/CaptialOfNetherlands"><image class="project-header-image" src="CapitalNL.JPG"></a>
</div>
<!-- PROJECT DETAILS -->
<!--
TODO
- Change the 'subheader-text' to whatever header you want for project details
- Add paragraphs using the <div class="body-text"></div> elements in the "project-details-content"
-->
<!--
<div id="project-details">
<div class="subheader-text">About Me</div>
<div class="project-details-content">
<div class="body-text">Coming soon...</div>
</div>
</div>
-->
<!-- IMAGE GALLERY -->
<div id="project-gallery">
<div class="project-gallery-content">
<!--
TODO
This is where the images in the gallery live. Here's a simple gallery image for you to copy:
Full Width Image:
<div class="gallery-image-container">
<img src="../assets/images/IMAGE_NAME" class="gallery-image">
<span class="image-caption">Coming soon...</span>
</div>
Half Width Image:
<div class="gallery-image-container half-width">
<img src="../assets/images/IMAGE_NAME" class="gallery-image">
<span class="image-caption">Coming soon...</span>
</div>
- To add an image to the this area, copy one of the above, paste it below this comment, and change the following:
- IMAGE_NAME: the name of the image file in assets/images
- IMAGE_CAPTION: to the caption of the image
-->
<!--
<div class="gallery-image-container half-width">
<img src="code.jpeg" class="gallery-image">
<span class="image-caption">Coming soon...</span>
</div>
<div class="gallery-image-container half-width">
<img src="sketchbook.jpeg" class="gallery-image">
<span class="image-caption">Coming soon...</span>
</div>
<div class="gallery-image-container half-width">
<img src="camera.jpeg" class="gallery-image">
<span class="image-caption">Coming soon...</span>
</div>
</div>
</div>
</div>
-->
<!-- FOOTER -->
<div id="footer">
<!--
TODO - Change href to your Instagram account (can also delete entire "a" element if no Instagram)
This should be the same across all pages.
-->
<a class="icon-link" target="_blank" href="https://eiarchitecture.wordpress.com/">
<image src="WebLink.png" class="footer-icon"/>
</a>
<a class="icon-link" target="_blank" href="https://www.linkedin.com/in/einnemee/">
<image src="LinkedInIcon.png" class="footer-icon"/>
</a>
<a class="icon-link" target="_blank" href="https://www.instagram.com/eiarchitecture/">
<image src="instagram.svg" class="footer-icon"/>
</a>
<a class="icon-link" target="_blank" href="https://www.facebook.com/eiarchitecture">
<image src="FacebookIcon.svg" class="footer-icon"/>
</a>
<a class="icon-link" target="_blank" href="https://github.com/einnemee">
<image src="GitHubIcon.png" class="footer-icon"/>
</a>
</div>
</body>
</html>