Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

abalsh / Garlix

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • Garlix
  • contact.php
Find file
BlameHistoryPermalink
  • Florian Shllaku's avatar
    changes · 526c85b7
    Florian Shllaku committed 6 years ago
    526c85b7
contact.php 3.11 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="description" content="Currency Exchange Website">
    <meta name="author" content="Florian Shllaku, Hakeem Shrief">
    <title>Currency Exchange</title>
    <!-- Connecting with Google Material for websit's logo/icon autorenew-->
    <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
    <!-- Setting up BootstrapCDN -->
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
    <!-- Main Custom styles for the website  -->
    <link href="css/main.css" rel="stylesheet">
    <link rel="stylesheet" href="css/contact.css">
  </head>
  <body class="text-center" background="img/background.jpg">
    <div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
  <header class="masthead mb-auto">
    <div class="inner">
      <i class="material-icons masthead-brand img-fluid">autorenew</i>
      <h3 class="masthead-brand">XCHANGE</h3>
      <nav class="nav nav-masthead justify-content-center">
        <a class="nav-link" href="index.html">Home</a>
        <a class="nav-link" href="fiat.html">Fiat</a>
        <a class="nav-link" href="crypto.html">Crypto</a>
        <a class="nav-link" href="charts.html">Charts</a>
        <a class="nav-link active" href="subscribe.html">Subscribe</a>
      </nav>
    </div>
  </header>
    <br> <br>
    <div class="page-wrapper bg-gra-01 p-t-180 p-b-100 font-poppins">
        <div class="wrapper wrapper--w780">
            <div class="card card-3">
                <div class="card-heading"></div>
                <div class="card-body">
                  <h2 class="title">Contact Us</h2>
                  <br>
                  <p id="contact-left">Get in-touch with us.</p> 
                    <form id="form" class="topBefore">
                    <div class="input-group">
                         <input id="name" type="text" placeholder="NAME">
                    </div>
                    <div class="input-group">
                         <input id="email" type="text" placeholder="E-MAIL">
                    </div>
                    <div class="input-group">
                         <textarea id="message" type="text" placeholder="MESSAGE"></textarea>
                    </div>
                    <div class="input-group">
                         <input id="submit" type="submit" value="Submit">
                    </div>
                    
                    </form>
                </div>
            </div>
        </div>
    </div>
    <footer class="mastfoot mt-auto">
        <div class="inner">
          <p>Develeoped and Designed by <a href="#">&#169;Garlix</a>.</p>
        </div>
      </footer>
    </div>
    </body>
    </html>