-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML.php
More file actions
83 lines (76 loc) · 3.57 KB
/
HTML.php
File metadata and controls
83 lines (76 loc) · 3.57 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<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="Real estate assistant web site" >
<meta name="author" content="Matthew C. Lind" >
<meta name="robots" content="index, follow">
<title>Matthew C. Lind - Portfolio 2024 - HTML</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<!-- Bootstrap icons-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" >
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,600;1,600&display=swap" rel="stylesheet" >
<link href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,500;0,600;0,700;1,300;1,500;1,600;1,700&display=swap" rel="stylesheet" >
<link href="https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,400;1,400&display=swap" rel="stylesheet" >
<!-- Core theme CSS (includes Bootstrap)-->
<link href="../css/styles.css" rel="stylesheet" >
<link href="../css/addstyles.css" rel="stylesheet" >
</head>
<body id="page-top" style="background:#e1e1e1;">
<!-- Back to top button -->
<button type="button" class="btn btn-danger btn-floating btn-lg" id="btn-back-to-top">
<i class="bi bi-caret-up-fill"></i>
</button>
<!-- header -->
<div class="container">
<div class="row">
<div content="nav">
<?php include 'topnavnew.php';?>
</div>
</div>
</div>
<header class="masthead">
<div class="container px-5">
<div class="row gx-5 align-items-center">
<div class="col-lg-12">
<!-- Mashead text and app badges-->
<div class="mb-5 mb-lg-0 text-center text-lg-start">
<h2 class="display-1 lh-1 mb-3" style="text-align:center;">HTML Experience</h2>
<p>I have been using HTML for over 20 years.</p>
<p>I began using HTML with version 3.</p>
<p>I have expert HTML5 coding skills using plain text editors and have used Dreamweaver for many projects as well.</p>
<p>When coding in HTML I create valid and compliant code that is compatible for accessibility, usability, interoperability, security, and maintainability.</p>
<br><br>
<a href="https://github.com/Overbrd/HTML" target="_blank">HTML files on Github</a>
<br><br>
</div>
</div>
</div>
</div>
</header>
<div class="row">
</div>
<?php include 'footer-portfolio-new.php';?>
<!-- Bootstrap core JS-->
<script src="../js/bootstrap.bundle.min.js"></script>
<!-- back to top-->
<script src="../js/backtotop.js"></script>
<!--
/////////////////////////////////////////////////////////////////
/
/ Matthew Lind Portfolio
/ reasst.com/portfolio/
/ Site Designed By: Matthew C. Lind
/ Designer: Matthew C. Lind
/ Copyright © 2024 Reasst.com
/ God Bless America
/
/////////////////////////////////////////////////////////////////
-->
</body>
</html>