diff --git a/web-projects/first-website/images/fd2-logo.png b/web-projects/first-website/images/fd2-logo.png
new file mode 100644
index 0000000..a9ff671
Binary files /dev/null and b/web-projects/first-website/images/fd2-logo.png differ
diff --git a/web-projects/first-website/index.html b/web-projects/first-website/index.html
new file mode 100644
index 0000000..13ebefa
--- /dev/null
+++ b/web-projects/first-website/index.html
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+ The FarmData2 Project
+
+
+
The FarmData2 Project
+
+
+
+
+ FarmData2 aims to
+ extend farmOS by adding data input forms, reporting, and analytics that
+ support the day-to-day operation of diversified vegetable farms, while
+ also facilitating the keeping of records necessary for organic
+ certification and for the study of sustainable farming practices.
+
+
+
+ FarmData2 contains features for recording the following activities that
+ are likely to occur on a small diversified vegetable farm.
+
+
+
Tray seeding
+
Direct seeding
+
Cover crop seeding
+
Transplanting
+
Soil disturbance
+
+
+
diff --git a/web-projects/first-website/styles/style.css b/web-projects/first-website/styles/style.css
new file mode 100644
index 0000000..9872f0f
--- /dev/null
+++ b/web-projects/first-website/styles/style.css
@@ -0,0 +1,37 @@
+html {
+ /* px means "pixels". The base font size is now 10 pixels high */
+ font-size: 10px;
+ /* Replace PLACEHOLDER with the font-family property value you got from Google Fonts */
+ font-family: 'Roboto', sans-serif;
+ background-color: #b8fdb1;
+}
+
+h1 {
+ font-size: 60px;
+ text-align: center;
+ margin: 0;
+ padding: 20px 0;
+ color: #12601b;
+ text-shadow: 3px 3px 1px #b8fdb1;
+}
+
+p,
+li {
+ font-size: 16px;
+ line-height: 2;
+ letter-spacing: 1px;
+}
+
+body {
+ width: 600px;
+ margin: 0 auto;
+ background-color: #ff9500;
+ padding: 0 20px 20px 20px;
+ border: 5px solid black;
+}
+
+img {
+ display: block;
+ margin: 0 auto;
+ max-width: 100%;
+}