diff --git a/getform.php b/getform.php new file mode 100644 index 0000000..fc1b674 --- /dev/null +++ b/getform.php @@ -0,0 +1,14 @@ +" ; +echo "Sender email is " . $email ."
" ; +echo "Title of the message is " . $title ."
" ; +echo . $message ."
" ; + +} +?> \ No newline at end of file diff --git a/CV/adedayo.html b/index.html similarity index 94% rename from CV/adedayo.html rename to index.html index 7f3e935..610be1f 100644 --- a/CV/adedayo.html +++ b/index.html @@ -11,7 +11,7 @@
-
+

ADELEKE, Elijah Adedayo

@@ -309,5 +309,30 @@

REFREE

+
+ +
+
+

Contact Me

+
+ +
+
+ +
+
+ +
+
+
+ +
+
+ +
+ + + +
- \ No newline at end of file + diff --git a/readme.md b/readme.md index 52e5e6f..cd6c1be 100644 --- a/readme.md +++ b/readme.md @@ -1,5 +1,5 @@ Flutterwave appreciation link : https://twitter.com/Elijahleke/status/1164817153905741824?s=20 -Lucid post : https://lucid.blog/adedael/post/1566646231 +Lucid post : https://lucid.blog/adedael/post/1566552539 -@elijahleke +@elijahleke \ No newline at end of file diff --git a/CV/style.css b/style.css similarity index 51% rename from CV/style.css rename to style.css index 98d144a..9827ebf 100644 --- a/CV/style.css +++ b/style.css @@ -77,4 +77,72 @@ div.skills { .company{ background-color: #9cc3e5; padding: 2px 10px; -} \ No newline at end of file +} + +/* Contact Form */ + +.cform { + max-width:400px; + width:100%; + margin:0 auto; + position:relative; + box-sizing:border-box; + + +} +#contact input[type="text"], #contact input[type="email"], +#contact input[type="tel"], #contact input[type="url"], + #contact textarea, #contact button[type="submit"] +{ + font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif; + +} + +#contact { + padding:25px; + margin:50px 0; + +} + +#contact h3 { + color: rgb(33, 150, 243); + display: block; + font-size: 30px; + font-weight: 400; + text-align: center; +} + + +fieldset { + border: medium none !important; + margin: 0 0 10px; + min-width: 100%; + padding: 0; + width: 100%; +} + +#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea { + width:100%; + border:1px solid #CCC; + background:#FFF; + margin:0 0 5px; + padding:10px; +} + +#contact textarea { + height:100px; + max-width:100%; + resize:none; +} + +#contact button[type="submit"] { + cursor:pointer; + width:30%; + border:none; + background:rgb(33, 150, 243); + color:#FFF; + margin:0 0 5px; + padding:10px; + font-size:15px; +} +