-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
24 lines (19 loc) · 728 Bytes
/
about.php
File metadata and controls
24 lines (19 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
// Require the common header (navigation and opening HTML tags)
require 'header.php';
?>
<div class="about-content"> <!-- To add styling in style file -->
<h1>About Me</h1>
<!-- My personal picture -->
<img src="images/Vee.jpeg"
alt="About Me" class="about-img">
<!-- To add styling in style file -->
<!-- Your description -->
<p>Hello! My name is Vanessa Blomstrand.<br>
This is my small teams project.<br>
I created this website to display football teams using PHP.<br>
I’m learning to use GitHub for version control and best practices for web development.</p>
<?php
// Require the footer (closes main, body, html)
require 'footer.php';
?>