devfolio/index.html

63 lines
1.5 KiB
HTML
Raw Normal View History

2019-08-16 03:38:14 +00:00
<!DOCTYPE html>
<html lang="en">
2019-08-16 19:11:22 +00:00
<head>
<title>My custom Bulma website</title>
<link rel="stylesheet" href="css/main.bundle.css">
</head>
<body>
<section class="hero is-primary">
<div class="hero-body">
<div class="container">
2019-08-17 00:30:12 +00:00
<div class="level">
<div class="level-item has-text-centered">
2019-08-16 20:31:26 +00:00
<figure class="image is-128x128">
2019-08-17 00:30:12 +00:00
<img class="is-rounded" src="img/me-big.jpg">
2019-08-16 20:31:26 +00:00
</figure>
2019-08-17 00:30:12 +00:00
</div>
</div>
<div class="columns has-text-centered">
<div class="column">
<h1 class="title">
Mark Macneil
</h1>
<h2 class="subtitle">
Primary subtitle
</h2>
</div>
2019-08-16 20:31:26 +00:00
</div>
2019-08-16 19:11:22 +00:00
</div>
</div>
</section>
<!-- <h1 class="title">
2019-08-16 03:38:14 +00:00
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>
2019-08-16 19:11:22 +00:00
</div> -->
</body>
2019-08-16 03:38:14 +00:00
</html>