devfolio/index.html
2019-08-16 22:32:24 -03:00

92 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>My custom Bulma website</title>
<link rel="icon" href="favicon.png" type="image/x-icon">
<link rel="stylesheet" href="css/main.bundle.css">
<script src="https://kit.fontawesome.com/4e5a72c756.js"></script>
</head>
<body>
<nav class="navbar is-primary" role="navigation" aria-label="main navigation">
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-end">
<div class="navbar-item">
<a href="https://github.com/mmacneil/devfolio" class="icon is-large">
<i class="fab fa-2x fa-github"></i>
</a>
</div>
<div class="navbar-item">
<a href="https://fullstackmark.com" class="icon is-large">
<i class="fas fa-2x fa-globe"></i>
</a>
</div>
</div>
</div>
</nav>
<section class="hero is-primary">
<div class="hero-body">
<div class="container">
<div class="level">
<div class="level-item has-text-centered">
<figure class="image is-128x128">
<img class="is-rounded" src="img/me-big.jpg">
</figure>
</div>
</div>
<div class="columns has-text-centered">
<div class="column">
<h1 class="title">
Mark Macneil
</h1>
<h2 class="subtitle">
FullStack .NET Developer, Halifax, NS
</h2>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<h1 class="title">About Me</h1>
<p>I'm a senior developer whose spent the last 14+ years obsessively
helping deliver .NET-based web, mobile and cloud solutions for a range of
clients from small startups to large enterprises like Macy's and McDonald's.</p>
</div>
</section>
<!-- <h1 class="title">
Bulma
</h1>
<p class="subtitle">
Modern CSS framework based on <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox">Flexbox</a>
</p>
<div class="field">
<div class="control">
<input class="input" type="text" placeholder="Input">
</div>
</div>
<div class="field">
<p class="control">
<span class="select">
<select>
<option>Select dropdown</option>
</select>
</span>
</p>
</div>
<div class="buttons">
<a class="button is-primary">Primary</a>
<a class="button is-link">Link</a>
</div> -->
</body>
</html>