Skip to content

Instantly share code, notes, and snippets.

@emygeek
emygeek / welcome.blade.php
Last active July 7, 2020 00:21
Laravel Job listing demo using Tailwind and Goutte - Welcome blade edited.
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel Jobs Scraper</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet">
@emygeek
emygeek / welcome-boilerplate.blade.php
Last active July 4, 2020 19:15
Landing page for for the Job scrapper demo using Laravel and Tailwind CSS
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel Jobs Scrapper</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet">
@emygeek
emygeek / dailyui-sign-up-page.markdown
Created August 18, 2018 10:37
#DailyUi Sign Up Page
@emygeek
emygeek / index.html
Created February 23, 2017 22:03
Javascript Calculator (Free Code Camp)
<section id="main">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6 col-md-offset-3 col-sm-offset-3 col-xs-offset-3 text-center">
<h1>Calculator</h1>
<div class="wrapper">
<div class="row">
<label id="output-screen" class="form-control"></label>
</div>
<div class="pad">
@emygeek
emygeek / index.html
Last active February 10, 2017 13:57
Wikipedia Viewer (FreeCodeCamp)
<section id="main">
<div class="container">
<div class="col-md-6 col-md-offset-3 text-center">
<div class="row">
<img src="http://res.cloudinary.com/emygeek/image/upload/v1486628599/icon-wiki_ypfgf1.png" class="img-responsive" >
<h2>Wikipedia Viewer Project by <a href="#">Marie</a></h2>
</div>
<div class="row">
<input type="search" name="search" id="search" placeholder="Search...">
<input type="submit" name="btn-search" id="btn-search" class="btn btn-primary" value="Search">
@emygeek
emygeek / index.html
Last active February 7, 2017 13:34
Random QUote Generator (FCC)
<section id="home">
<div class="container">
<div class="col-md-8 col-md-offset-2">
<div class="content">
<h1> Quotes for Positivity </h1>
<div class="quote-area">
<p id="quote-title"class="quote"></p>
<span id="quote-author" class="author"></span>
</div>
<button id="get-quote" class="btn btn-light">New Quote</button>
@emygeek
emygeek / index.html
Last active February 9, 2017 07:46
Tribute Page (FreeCodeCamp)
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Calligraffitti" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Love+Ya+Like+A+Sister" rel="stylesheet">
<div id="home">
<div class="container-fluid">
<div class="tagline text-center">
<h1>Serena Williams</h1>
@emygeek
emygeek / index.html
Last active February 7, 2017 11:40
Portfolio (FreeCodeCamp)
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>