├── assets ├── css │ └── style.css ├── img │ ├── bg-img.png │ ├── charles-rRWiVQzLm7k-unsplash.jpg │ ├── ic-instagram.png │ ├── ic-instagram@2x.png │ ├── ic-linkedin.png │ ├── ic-linkedin@2x.png │ ├── ic-twitter.png │ ├── ic-twitter@2x.png │ ├── ic_fb.png │ ├── ic_fb@2x.png │ ├── img-dot.png │ ├── img-dot@2x.png │ ├── logo-ALTA-v2.png │ ├── logo-ALTA-v2@2x.png │ ├── logo-ALTA.png │ ├── logo-ALTA@2x.png │ └── matthew-hamilton-tNCH0sKSZbA-unsplash.jpg └── js │ ├── bootstrap.min.js │ └── index.js ├── contact.html ├── index.html └── review_message.html /assets/css/style.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "Roboto", sans-serif; 3 | src: url(https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap); 4 | } 5 | 6 | body { 7 | background-size: 100%; 8 | font-family: "Roboto", sans-serif; 9 | color: #19345e; 10 | } 11 | 12 | .home { 13 | background-image: url(/assets/img/bg-img.png); 14 | background-size: 100%; 15 | } 16 | 17 | .navbar-nav { 18 | font-size: 13px; 19 | } 20 | 21 | .nav-item { 22 | margin-left: 20px; 23 | margin-right: 20px; 24 | } 25 | 26 | .navbar-light .navbar-nav .nav-link { 27 | color: #19345e; 28 | } 29 | 30 | .navbar-light .navbar-nav .nav-link:focus, 31 | .navbar-light .navbar-nav .nav-link:hover { 32 | color: #f47522; 33 | } 34 | 35 | .navbar-light .navbar-nav .nav-link.active, 36 | .navbar-light .navbar-nav .show > .nav-link { 37 | color: #f47522; 38 | } 39 | 40 | .btn-orange { 41 | border: none; 42 | padding: 10px 30px; 43 | text-align: center; 44 | text-decoration: none; 45 | display: inline-block; 46 | cursor: pointer; 47 | border-radius: 16px; 48 | border-radius: 20px; 49 | color: white; 50 | margin-top: 10px; 51 | background-color: #f47522; 52 | } 53 | 54 | .btn-orange:hover { 55 | background-color: #f3cbb0; 56 | } 57 | 58 | #anne { 59 | border-radius: 50%; 60 | margin-top: 30%; 61 | margin-left: 45%; 62 | width: 100%; 63 | height: 100%; 64 | max-width: 300px; 65 | max-height: 300px; 66 | } 67 | 68 | /* Contact */ 69 | .row { 70 | --bs-gutter-x: 0; 71 | --bs-gutter-y: 0; 72 | } 73 | 74 | .img-banner { 75 | background-image: url("/assets/img/charles-rRWiVQzLm7k-unsplash.jpg"); 76 | background-size: cover; 77 | height: 100vh; 78 | width: 35%; 79 | position: relative; 80 | } 81 | 82 | .layer { 83 | background-color: rgba(25, 52, 94, 0.65); 84 | width: 286%; 85 | height: 100%; 86 | display: flex; 87 | justify-content: center; 88 | align-items: center; 89 | } 90 | 91 | #alterra { 92 | display: flex; 93 | margin: 25%; 94 | margin-top: 40%; 95 | width: 50%; 96 | } 97 | 98 | .forms-a { 99 | padding-left: 10%; 100 | padding-top: 2%; 101 | } 102 | 103 | .form-text-a { 104 | font-size: 20px; 105 | } 106 | 107 | .form-input-a, 108 | #nasionality { 109 | width: 100%; 110 | max-width: 450px; 111 | min-width: 250px; 112 | height: 28; 113 | margin-bottom: 16px; 114 | } 115 | 116 | .messagebox { 117 | margin: 0 auto; 118 | margin-top: 100px; 119 | border: 2px solid grey; 120 | max-width: 664px; 121 | padding: 45px 49px; 122 | background-color: #ffffff; 123 | border: 1px solid #ccd7eb; 124 | border-radius: 10px; 125 | } 126 | 127 | .background1 { 128 | position: absolute; 129 | z-index: -1; 130 | top: 0; 131 | left: 0; 132 | height: 75%; 133 | width: 100%; 134 | background-color: #ffffff; 135 | } 136 | .background2 { 137 | position: absolute; 138 | z-index: -1; 139 | top: 75%; 140 | left: 0; 141 | height: 25%; 142 | width: 100%; 143 | background-color: #edf6ff; 144 | } 145 | 146 | .row hr { 147 | width: 50%; 148 | margin: 0px auto; 149 | margin-bottom: 20px; 150 | } 151 | 152 | .row p { 153 | margin-bottom: 0; 154 | } 155 | 156 | @media (max-width: 767.99px) { 157 | .forms-a, 158 | #nasionality { 159 | width: 90%; 160 | height: 28; 161 | padding-top: 0%; 162 | } 163 | 164 | .img-banner { 165 | display: none; 166 | } 167 | 168 | .messagebox { 169 | max-width: 500px; 170 | padding: 45px 49px; 171 | } 172 | } 173 | -------------------------------------------------------------------------------- /assets/img/bg-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/bg-img.png -------------------------------------------------------------------------------- /assets/img/charles-rRWiVQzLm7k-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/charles-rRWiVQzLm7k-unsplash.jpg -------------------------------------------------------------------------------- /assets/img/ic-instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/ic-instagram.png -------------------------------------------------------------------------------- /assets/img/ic-instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/ic-instagram@2x.png -------------------------------------------------------------------------------- /assets/img/ic-linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/ic-linkedin.png -------------------------------------------------------------------------------- /assets/img/ic-linkedin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/ic-linkedin@2x.png -------------------------------------------------------------------------------- /assets/img/ic-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/ic-twitter.png -------------------------------------------------------------------------------- /assets/img/ic-twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/ic-twitter@2x.png -------------------------------------------------------------------------------- /assets/img/ic_fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/ic_fb.png -------------------------------------------------------------------------------- /assets/img/ic_fb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/ic_fb@2x.png -------------------------------------------------------------------------------- /assets/img/img-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/img-dot.png -------------------------------------------------------------------------------- /assets/img/img-dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/img-dot@2x.png -------------------------------------------------------------------------------- /assets/img/logo-ALTA-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/logo-ALTA-v2.png -------------------------------------------------------------------------------- /assets/img/logo-ALTA-v2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/logo-ALTA-v2@2x.png -------------------------------------------------------------------------------- /assets/img/logo-ALTA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/logo-ALTA.png -------------------------------------------------------------------------------- /assets/img/logo-ALTA@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/logo-ALTA@2x.png -------------------------------------------------------------------------------- /assets/img/matthew-hamilton-tNCH0sKSZbA-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prudenca08/AlterraTaskSection9/3a345b9e889d70774113066c6f3cf7079edca984/assets/img/matthew-hamilton-tNCH0sKSZbA-unsplash.jpg -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v4.1.3 (https://getbootstrap.com/) 3 | * Copyright 2011-2018 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e(t.bootstrap={},t.jQuery,t.Popper)}(this,function(t,e,h){"use strict";function i(t,e){for(var n=0;nthis._items.length-1||t<0))if(this._isSliding)P(this._element).one(Q.SLID,function(){return e.to(t)});else{if(n===t)return this.pause(),void this.cycle();var i=ndocument.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right
',trigger:"hover focus",title:"",delay:0,html:!(Ie={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"}),selector:!(Se={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)"}),placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent"},we="out",Ne={HIDE:"hide"+Ee,HIDDEN:"hidden"+Ee,SHOW:(De="show")+Ee,SHOWN:"shown"+Ee,INSERTED:"inserted"+Ee,CLICK:"click"+Ee,FOCUSIN:"focusin"+Ee,FOCUSOUT:"focusout"+Ee,MOUSEENTER:"mouseenter"+Ee,MOUSELEAVE:"mouseleave"+Ee},Oe="fade",ke="show",Pe=".tooltip-inner",je=".arrow",He="hover",Le="focus",Re="click",xe="manual",We=function(){function i(t,e){if("undefined"==typeof h)throw new TypeError("Bootstrap tooltips require Popper.js (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var t=i.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=pe(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),pe(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(pe(this.getTipElement()).hasClass(ke))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),pe.removeData(this.element,this.constructor.DATA_KEY),pe(this.element).off(this.constructor.EVENT_KEY),pe(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&pe(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,(this._activeTrigger=null)!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if("none"===pe(this.element).css("display"))throw new Error("Please use show on visible elements");var t=pe.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){pe(this.element).trigger(t);var n=pe.contains(this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!n)return;var i=this.getTipElement(),r=Fn.getUID(this.constructor.NAME);i.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&pe(i).addClass(Oe);var o="function"==typeof this.config.placement?this.config.placement.call(this,i,this.element):this.config.placement,s=this._getAttachment(o);this.addAttachmentClass(s);var a=!1===this.config.container?document.body:pe(document).find(this.config.container);pe(i).data(this.constructor.DATA_KEY,this),pe.contains(this.element.ownerDocument.documentElement,this.tip)||pe(i).appendTo(a),pe(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new h(this.element,i,{placement:s,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:je},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){e._handlePopperPlacementChange(t)}}),pe(i).addClass(ke),"ontouchstart"in document.documentElement&&pe(document.body).children().on("mouseover",null,pe.noop);var l=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,pe(e.element).trigger(e.constructor.Event.SHOWN),t===we&&e._leave(null,e)};if(pe(this.tip).hasClass(Oe)){var c=Fn.getTransitionDurationFromElement(this.tip);pe(this.tip).one(Fn.TRANSITION_END,l).emulateTransitionEnd(c)}else l()}},t.hide=function(t){var e=this,n=this.getTipElement(),i=pe.Event(this.constructor.Event.HIDE),r=function(){e._hoverState!==De&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),pe(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(pe(this.element).trigger(i),!i.isDefaultPrevented()){if(pe(n).removeClass(ke),"ontouchstart"in document.documentElement&&pe(document.body).children().off("mouseover",null,pe.noop),this._activeTrigger[Re]=!1,this._activeTrigger[Le]=!1,this._activeTrigger[He]=!1,pe(this.tip).hasClass(Oe)){var o=Fn.getTransitionDurationFromElement(n);pe(n).one(Fn.TRANSITION_END,r).emulateTransitionEnd(o)}else r();this._hoverState=""}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return Boolean(this.getTitle())},t.addAttachmentClass=function(t){pe(this.getTipElement()).addClass(Te+"-"+t)},t.getTipElement=function(){return this.tip=this.tip||pe(this.config.template)[0],this.tip},t.setContent=function(){var t=this.getTipElement();this.setElementContent(pe(t.querySelectorAll(Pe)),this.getTitle()),pe(t).removeClass(Oe+" "+ke)},t.setElementContent=function(t,e){var n=this.config.html;"object"==typeof e&&(e.nodeType||e.jquery)?n?pe(e).parent().is(t)||t.empty().append(e):t.text(pe(e).text()):t[n?"html":"text"](e)},t.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},t._getAttachment=function(t){return Ie[t.toUpperCase()]},t._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(t){if("click"===t)pe(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(t){return i.toggle(t)});else if(t!==xe){var e=t===He?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=t===He?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;pe(i.element).on(e,i.config.selector,function(t){return i._enter(t)}).on(n,i.config.selector,function(t){return i._leave(t)})}pe(i.element).closest(".modal").on("hide.bs.modal",function(){return i.hide()})}),this.config.selector?this.config=l({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},t._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},t._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||pe(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),pe(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Le:He]=!0),pe(e.getTipElement()).hasClass(ke)||e._hoverState===De?e._hoverState=De:(clearTimeout(e._timeout),e._hoverState=De,e.config.delay&&e.config.delay.show?e._timeout=setTimeout(function(){e._hoverState===De&&e.show()},e.config.delay.show):e.show())},t._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||pe(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),pe(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Le:He]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=we,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(function(){e._hoverState===we&&e.hide()},e.config.delay.hide):e.hide())},t._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},t._getConfig=function(t){return"number"==typeof(t=l({},this.constructor.Default,pe(this.element).data(),"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),Fn.typeCheckConfig(ve,t,this.constructor.DefaultType),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},t._cleanTipClass=function(){var t=pe(this.getTipElement()),e=t.attr("class").match(be);null!==e&&e.length&&t.removeClass(e.join(""))},t._handlePopperPlacementChange=function(t){var e=t.instance;this.tip=e.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},t._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(pe(t).removeClass(Oe),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},i._jQueryInterface=function(n){return this.each(function(){var t=pe(this).data(ye),e="object"==typeof n&&n;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),pe(this).data(ye,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.1.3"}},{key:"Default",get:function(){return Ae}},{key:"NAME",get:function(){return ve}},{key:"DATA_KEY",get:function(){return ye}},{key:"Event",get:function(){return Ne}},{key:"EVENT_KEY",get:function(){return Ee}},{key:"DefaultType",get:function(){return Se}}]),i}(),pe.fn[ve]=We._jQueryInterface,pe.fn[ve].Constructor=We,pe.fn[ve].noConflict=function(){return pe.fn[ve]=Ce,We._jQueryInterface},We),Jn=(qe="popover",Ke="."+(Fe="bs.popover"),Me=(Ue=e).fn[qe],Qe="bs-popover",Be=new RegExp("(^|\\s)"+Qe+"\\S+","g"),Ve=l({},zn.Default,{placement:"right",trigger:"click",content:"",template:''}),Ye=l({},zn.DefaultType,{content:"(string|element|function)"}),ze="fade",Ze=".popover-header",Ge=".popover-body",$e={HIDE:"hide"+Ke,HIDDEN:"hidden"+Ke,SHOW:(Je="show")+Ke,SHOWN:"shown"+Ke,INSERTED:"inserted"+Ke,CLICK:"click"+Ke,FOCUSIN:"focusin"+Ke,FOCUSOUT:"focusout"+Ke,MOUSEENTER:"mouseenter"+Ke,MOUSELEAVE:"mouseleave"+Ke},Xe=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),(e.prototype.constructor=e).__proto__=n;var r=i.prototype;return r.isWithContent=function(){return this.getTitle()||this._getContent()},r.addAttachmentClass=function(t){Ue(this.getTipElement()).addClass(Qe+"-"+t)},r.getTipElement=function(){return this.tip=this.tip||Ue(this.config.template)[0],this.tip},r.setContent=function(){var t=Ue(this.getTipElement());this.setElementContent(t.find(Ze),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(Ge),e),t.removeClass(ze+" "+Je)},r._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},r._cleanTipClass=function(){var t=Ue(this.getTipElement()),e=t.attr("class").match(Be);null!==e&&0=this._offsets[r]&&("undefined"==typeof this._offsets[r+1]||t 2 | 3 | 4 | 5 | 6 | 12 | 13 | Contact Us 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | alterra 26 |
27 |
28 |
29 |
30 |

Contact Us

31 |
32 | 35 | 42 |
Full name cannot be empty
43 | 46 | 54 |
Email address cannot be empty
55 | 58 | 65 |
Phone number cannot be empty
66 | 69 | 80 | 81 | 88 | 89 | Submit 97 |
98 |
99 |
100 | 105 | 106 | 107 | 108 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | Home 14 | 15 | 16 | 17 |
18 | 57 |
58 |
59 |
60 | woman 65 |
66 |
67 |

Hi, my name is

68 |

69 | Anne Sullivan 70 |

71 |

72 | I build things for the web 73 |

74 | Get In Touch 77 |
78 |
79 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /review_message.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | Review Message 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 |
22 |

23 | Full Name : 24 | Mike 25 |

26 |

27 | Email Address : 28 | mr.wazowski@email.com 31 |

32 |

33 | Phone Number : 34 | 081234567890 35 |

36 |

37 | Nationality : 38 | Indonesian 39 |

40 |
41 |
42 |

43 | 44 | Anne, I’m Mike from Monsters, Inc. I’ve seen your previous project 45 | and it was really amazing. And as you know our company are 46 | planning to build new mobile application. I hope you can join us 47 | to develope this application. We look forward to hearing from you 48 | and hope you’ll join our project! 49 | 50 |

51 |
52 |
53 |
54 |

55 | Thanks for contacting us!
56 | We will be in touch with you shortly. 57 |

58 | Home 59 |
60 |
61 |
62 | dot 68 | 69 | 74 | 75 | 88 | 89 | 90 | --------------------------------------------------------------------------------