This commit is contained in:
Luke Oliff 2018-09-13 13:25:13 +01:00
parent 0610d02da9
commit f2d6f20830
No known key found for this signature in database
GPG Key ID: 8DF5909650449E9F
3 changed files with 20 additions and 0 deletions

View File

@ -3,3 +3,4 @@ title: My First PR
description: Helping first time contributors to make their first contribution. My First PR.
logo: https://raw.githubusercontent.com/my-first-pr/my-first-pr.github.io/master/assets/images/logo.png
show_downloads: false
exclude: ["code/"]

8
code/lukeoliff.html Normal file
View File

@ -0,0 +1,8 @@
<html>
<head>
<title>HTML Example</title>
</head>
<body>
<p>Hello World</p>
</body>
</html>

11
code/lukeoliff.php Normal file
View File

@ -0,0 +1,11 @@
<!--
http://php.net/manual/en/tutorial.firstpage.php
-->
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php echo '<p>Hello World</p>'; ?>
</body>
</html>