├── .gitignore ├── Develop ├── assets │ ├── css │ │ └── style.css │ └── images │ │ ├── brand-awareness.png │ │ ├── cost-management.png │ │ ├── digital-marketing-meeting.jpg │ │ ├── lead-generation.png │ │ ├── online-reputation-management.jpg │ │ ├── search-engine-optimization.jpg │ │ └── social-media-marketing.jpg └── index.html └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | .vscode 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /Develop/assets/css/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | padding: 0; 4 | margin: 0; 5 | } 6 | 7 | body { 8 | background-color: #d9dcd6; 9 | } 10 | 11 | .header { 12 | padding: 20px; 13 | font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 14 | background-color: #2a607c; 15 | color: #ffffff; 16 | } 17 | 18 | .header h1 { 19 | display: inline-block; 20 | font-size: 48px; 21 | } 22 | 23 | .header h1 .seo { 24 | color: #d9dcd6; 25 | } 26 | 27 | .header div { 28 | padding-top: 15px; 29 | margin-right: 20px; 30 | float: right; 31 | font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 32 | font-size: 20px; 33 | } 34 | 35 | .header div ul { 36 | list-style-type: none; 37 | } 38 | 39 | .header div ul li { 40 | display: inline-block; 41 | margin-left: 25px; 42 | } 43 | 44 | a { 45 | color: #ffffff; 46 | text-decoration: none; 47 | } 48 | 49 | p { 50 | font-size: 16px; 51 | } 52 | 53 | .hero { 54 | height: 800px; 55 | width: 100%; 56 | margin-bottom: 25px; 57 | background-image: url("../images/digital-marketing-meeting.jpg"); 58 | background-size: cover; 59 | background-position: center; 60 | } 61 | 62 | .float-left { 63 | float: left; 64 | margin-right: 25px; 65 | } 66 | 67 | .float-right { 68 | float: right; 69 | margin-left: 25px; 70 | } 71 | 72 | .content { 73 | width: 75%; 74 | display: inline-block; 75 | margin-left: 20px; 76 | } 77 | 78 | .benefits { 79 | margin-right: 20px; 80 | padding: 20px; 81 | clear: both; 82 | float: right; 83 | width: 20%; 84 | height: 100%; 85 | font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 86 | background-color: #2589bd; 87 | } 88 | 89 | .benefit-lead { 90 | margin-bottom: 32px; 91 | color: #ffffff; 92 | } 93 | 94 | .benefit-brand { 95 | margin-bottom: 32px; 96 | color: #ffffff; 97 | } 98 | 99 | .benefit-cost { 100 | margin-bottom: 32px; 101 | color: #ffffff; 102 | } 103 | 104 | .benefit-lead h3 { 105 | margin-bottom: 10px; 106 | text-align: center; 107 | } 108 | 109 | .benefit-brand h3 { 110 | margin-bottom: 10px; 111 | text-align: center; 112 | } 113 | 114 | .benefit-cost h3 { 115 | margin-bottom: 10px; 116 | text-align: center; 117 | } 118 | 119 | .benefit-lead img { 120 | display: block; 121 | margin: 10px auto; 122 | max-width: 150px; 123 | } 124 | 125 | .benefit-brand img { 126 | display: block; 127 | margin: 10px auto; 128 | max-width: 150px; 129 | } 130 | 131 | .benefit-cost img { 132 | display: block; 133 | margin: 10px auto; 134 | max-width: 150px; 135 | } 136 | 137 | .search-engine-optimization { 138 | margin-bottom: 20px; 139 | padding: 50px; 140 | height: 300px; 141 | font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 142 | background-color: #0072bb; 143 | color: #ffffff; 144 | } 145 | 146 | .online-reputation-management { 147 | margin-bottom: 20px; 148 | padding: 50px; 149 | height: 300px; 150 | font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 151 | background-color: #0072bb; 152 | color: #ffffff; 153 | } 154 | 155 | .social-media-marketing { 156 | margin-bottom: 20px; 157 | padding: 50px; 158 | height: 300px; 159 | font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 160 | background-color: #0072bb; 161 | color: #ffffff; 162 | } 163 | 164 | .search-engine-optimization img { 165 | max-height: 200px; 166 | } 167 | 168 | .online-reputation-management img { 169 | max-height: 200px; 170 | } 171 | 172 | .social-media-marketing img { 173 | max-height: 200px; 174 | } 175 | 176 | .search-engine-optimization h2 { 177 | margin-bottom: 20px; 178 | font-size: 36px; 179 | } 180 | 181 | .online-reputation-management h2 { 182 | margin-bottom: 20px; 183 | font-size: 36px; 184 | } 185 | 186 | .social-media-marketing h2 { 187 | margin-bottom: 20px; 188 | font-size: 36px; 189 | } 190 | 191 | .footer { 192 | padding: 30px; 193 | clear: both; 194 | font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 195 | text-align: center; 196 | } 197 | 198 | .footer h2 { 199 | font-size: 20px; 200 | } 201 | -------------------------------------------------------------------------------- /Develop/assets/images/brand-awareness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/urban-octo-telegram/9ad6462c21fa799d133db62f5e57e6c1af5efc2d/Develop/assets/images/brand-awareness.png -------------------------------------------------------------------------------- /Develop/assets/images/cost-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/urban-octo-telegram/9ad6462c21fa799d133db62f5e57e6c1af5efc2d/Develop/assets/images/cost-management.png -------------------------------------------------------------------------------- /Develop/assets/images/digital-marketing-meeting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/urban-octo-telegram/9ad6462c21fa799d133db62f5e57e6c1af5efc2d/Develop/assets/images/digital-marketing-meeting.jpg -------------------------------------------------------------------------------- /Develop/assets/images/lead-generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/urban-octo-telegram/9ad6462c21fa799d133db62f5e57e6c1af5efc2d/Develop/assets/images/lead-generation.png -------------------------------------------------------------------------------- /Develop/assets/images/online-reputation-management.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/urban-octo-telegram/9ad6462c21fa799d133db62f5e57e6c1af5efc2d/Develop/assets/images/online-reputation-management.jpg -------------------------------------------------------------------------------- /Develop/assets/images/search-engine-optimization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/urban-octo-telegram/9ad6462c21fa799d133db62f5e57e6c1af5efc2d/Develop/assets/images/search-engine-optimization.jpg -------------------------------------------------------------------------------- /Develop/assets/images/social-media-marketing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/urban-octo-telegram/9ad6462c21fa799d133db62f5e57e6c1af5efc2d/Develop/assets/images/social-media-marketing.jpg -------------------------------------------------------------------------------- /Develop/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | website 8 | 9 | 10 | 11 |
12 |

Horiseon

13 |
14 | 25 |
26 |
27 |
28 |
29 |
30 | 31 |

Search Engine Optimization

32 |

33 | The dominance of mobile internet use means that users are searching for the right business as they travel, shop, or sit on their couch at home. Search Engine Optimization (SEO) allows you to increase your visibility and find the right customers for your business. 34 |

35 |
36 |
37 | 38 |

Online Reputation Management

39 |

40 | The web is full of opinions, and some of these can be negative. Social media allows anyone with an internet connection to say whatever they want about your business. Online Reputation Management gives you the control over what potential customers see when they search for your business. 41 |

42 |
43 |
44 | 45 |

Social Media Marketing

46 |

47 | Social media continues to have a sizable influence on buying habits. Social media marketing helps you determine which platforms are suited to your brand, using analytics to find the right markets and increase your lead generation. 48 |

49 |
50 |
51 |
52 |
53 |

Lead Generation

54 | 55 |

56 | Inbound strategies for lead generation require less work for your business, bringing customers directly to your website. 57 |

58 |
59 |
60 |

Brand Awareness

61 | 62 |

63 | Users find your business through paid and organic searches, increasing the search ranking and visibility for your business. 64 |

65 |
66 |
67 |

Cost Management

68 | 69 |

70 | As the search ranking for your business increases, your advertising costs decrease, and you no longer need to advertise your page. 71 |

72 |
73 |
74 | 80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Code Refactor Starter Code 2 | --------------------------------------------------------------------------------