forked from reneenoble/portfolio-morning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (109 loc) · 4.73 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
<html>
<head>
<link href="style.css" rel="stylesheet">
<title>Renee Noble - Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Imprima&family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<h1 class="banner">Renee Noble</h1>
<header id="header">
<section id="header-main">
<article id="header-blurb">
<h2>
Full Stack Devloper
</h2>
<p>
A tech lover who is ethusiastic about education and community projects. Lots of experience with Data Science.
</p>
<p>
Working towards changing the environment with technolgy.
</p>
</article>
<article id="header-contact">
<h2>Contact me.</h2>
<p>
<i class="fa fa-envelope" aria-hidden="true"></i>
<a href="mailto:[email protected]">[email protected]</a>
</p>
<p>
<i class="fab fa-github" aria-hidden="true"></i>
<a href="github.com/reneenoble">reneenoble</a>
</p>
<p>
<i class="fab fa-twitter" aria-hidden="true"></i>
<a href="https://twitter.com/noble_renee">@noble_renee</a>
</p>
<p>
<i class="fab fa-linkedin" aria-hidden="true"></i>
<a href="https://www.linkedin.com/in/your-link">Renee Noble</a>
</p>
</article>
</section>
</header>
<h2 class="banner">My Projects</h2>
<main>
<article class="project">
<img src="images/translate.png">
<div>
<h3>
Translate your own text
</h3>
<p>
This is a project where I use Python to translate text. I use Flask to host it on the web. It uses Azure Cognitive Services API for the processing and translation.
</p>
<span class="highlight">Technology</span>
<ul>
<li>Python</li>
<li>Flask</li>
<li>Azure Cognitive Services</li>
</ul>
<a class="link-btn" href="">See it Live</a>
<a class="link-btn" href="https://github.com/reneenoble/pen-pal-project">GitHub Repo</a>
</div>
</article>
<article class="project">
<img src="images/party.png">
<div>
<h3>
Invitation Maker Flask App
</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<span class="highlight">Technology</span>
<ul>
<li>Python</li>
<li>Flask</li>
<li>Azure App Service</li>
<li>Azure Blob</li>
</ul>
<a class="link-btn" href="">See it Live</a>
<a class="link-btn" href="">GitHub Repo</a>
</div>
</article>
<article class="project">
<img src="images/wordle.png">
<div>
<h3>
Langauge Translation Web App
</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<span class="highlight">Technology</span>
<ul>
<li>Python</li>
<li>Flask</li>
<li>MatplotLib</li>
<li>Azure Machine Learning Studio</li>
<li>NLP</li>
</ul>
<a class="link-btn" href="">GitHub Repo</a>
</div>
</article>
</main>
</body>
</html>